import { Empty } from '@/components/ui/primitives'; import type { Incident } from '@/lib/types'; import { IncidentRow } from './IncidentRow'; export function IncidentsSection({ incidents, compact = true }: { incidents: Incident[]; compact?: boolean }) { if (!incidents.length) return No incident recorded for this scope.; return ( ); }