From d943a15e5fff1aa4b2f785b387b93b655326b136 Mon Sep 17 00:00:00 2001 From: soundsng Date: Thu, 14 May 2026 09:16:48 +0100 Subject: [PATCH] feat: add HealthBadge component stub --- web/dashboard/src/components/HealthBadge.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 web/dashboard/src/components/HealthBadge.tsx diff --git a/web/dashboard/src/components/HealthBadge.tsx b/web/dashboard/src/components/HealthBadge.tsx new file mode 100644 index 0000000..8b78b5a --- /dev/null +++ b/web/dashboard/src/components/HealthBadge.tsx @@ -0,0 +1,9 @@ +export type HealthStatus = 'healthy' | 'degraded' | 'down'; + +interface HealthBadgeProps { + status: HealthStatus; +} + +export default function HealthBadge({ status }: HealthBadgeProps) { + return {status}; +} \ No newline at end of file