Components
Loading preview...
Here is incident report large component
npx shadcn@latest add https://21st.dev/r/reaviz/incident-report-largeimport { useState } from "react";
import { Component } from "@/components/ui/incident-report-large";
import { cn } from "@/lib/utils";
const IncidentReportCardLargeDemo = () => {
const [isDarkMode, setIsDarkMode] = useState(true);
return (
<div
className={cn(
"flex flex-col w-full min-h-screen justify-center items-center p-4 transition-colors duration-300",
isDarkMode ? "dark bg-gray-900" : "bg-gray-100"
)}
>
<Component isDarkMode={isDarkMode} />
</div>
);
};
export { IncidentReportCardLargeDemo };