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