feat(ui/alerts): register /alerts/* routes with placeholder pages

Adds 6 lazy-loaded route entries for the alerting UI (Inbox, All, History,
Rules list, Rule editor wizard, Silences) plus an `/alerts` → `/alerts/inbox`
redirect. Page components are placeholder stubs to be replaced in Phase 5/6/7.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-20 13:44:44 +02:00
parent 019e79a362
commit 167d0ebd42
7 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
export default function AllAlertsPage() {
return <div>AllAlertsPage coming soon</div>;
}

View File

@@ -0,0 +1,3 @@
export default function HistoryPage() {
return <div>HistoryPage coming soon</div>;
}

View File

@@ -0,0 +1,3 @@
export default function InboxPage() {
return <div>InboxPage coming soon</div>;
}

View File

@@ -0,0 +1,3 @@
export default function RuleEditorWizard() {
return <div>RuleEditorWizard coming soon</div>;
}

View File

@@ -0,0 +1,3 @@
export default function RulesListPage() {
return <div>RulesListPage coming soon</div>;
}

View File

@@ -0,0 +1,3 @@
export default function SilencesPage() {
return <div>SilencesPage coming soon</div>;
}