Files
breakpilot-compliance/admin-compliance/app/sdk/notfallplan/_components/index.ts
Sharang Parnerkar ef8284dff5 refactor(admin): split dsfa/[id] and notfallplan page.tsx into colocated components
dsfa/[id]/page.tsx (1893 LOC -> 350 LOC) split into 9 components:
Section1-5Editor, SDMCoverageOverview, RAGSearchPanel, AddRiskModal,
AddMitigationModal. Page is now a thin orchestrator.

notfallplan/page.tsx (1890 LOC -> 435 LOC) split into 8 modules:
types.ts, ConfigTab, IncidentsTab, TemplatesTab, ExercisesTab, Modals,
ApiSections. All under the 500-line hard cap.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 18:51:54 +02:00

8 lines
365 B
TypeScript

export { ConfigTab } from './ConfigTab'
export { IncidentsTab } from './IncidentsTab'
export { TemplatesTab } from './TemplatesTab'
export { ExercisesTab } from './ExercisesTab'
export { ContactModal, ExerciseModal, ScenarioModal } from './Modals'
export { ApiContactsSection, ApiScenariosSection, ApiExercisesSection } from './ApiSections'
export * from './types'