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