Components
Loading preview...
Here is heat map middle sized
npx shadcn@latest add https://21st.dev/r/reaviz/heat-map-middleimport React from 'react';
import HeatmapIncidentReportCard from '@/components/ui/heat-map-middle';
function HeatmapIncidentReportCardDemoPage() {
return (
<div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-neutral-900 p-4 transition-colors duration-300">
<HeatmapIncidentReportCard title="Incident Heatmap" />
</div>
);
}
export default HeatmapIncidentReportCardDemoPage;