Components
Loading preview...
Incident report bar
npx shadcn@latest add https://21st.dev/r/reaviz/incident-reportimport React from 'react';
import IncidentReportCard from '@/components/ui/incident-report';
const Demo = () => {
return (
<div style={{ padding: '20px', backgroundColor: '#f0f0f0', minHeight: '100vh', display: 'flex', justifyContent: 'center', alignItems: 'center' }}>
<h1 style={{ position: 'absolute', top: '20px', left: '20px' }}>Демонстрация Incident Report Card</h1>
<IncidentReportCard />
</div>
);
};
export default Demo;