Components
Loading preview...
Here is Heat Map small component
npx shadcn@latest add https://21st.dev/r/reaviz/heat-mapimport React from 'react';
import IncidentHeatmapReportCard from '@/components/ui/heat-map'; // Adjust path based on your project structure
// Demo page component to showcase the IncidentHeatmapReportCard
function IncidentHeatmapReportCardDemoPage() {
return (
<div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900 p-4 transition-colors duration-300">
<IncidentHeatmapReportCard />
</div>
);
}
export default IncidentHeatmapReportCardDemoPage;