Components
Loading preview...
here is area chart small
npx shadcn@latest add https://21st.dev/r/reaviz/area-chart-1import React from 'react';
import IncidentReportCard from '@/components/ui/area-chart-1';
function IncidentReportCardDemoPage() {
return (
<div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900 p-4 transition-colors duration-300">
<IncidentReportCard />
</div>
);
}
export default IncidentReportCardDemoPage;