Components
Loading preview...
Here is Area chart multi series component
npx shadcn@latest add https://21st.dev/r/reaviz/area-chart-mediumimport React from 'react';
import AdvancedIncidentReportCard from '@/components/ui/area-chart-medium';
function AdvancedIncidentReportCardDemoPage() {
return (
<div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-800 p-4 transition-colors duration-300">
<AdvancedIncidentReportCard />
</div>
);
}
export default AdvancedIncidentReportCardDemoPage;