Files
BayIQ-UI/src/features/dashboard/components/SystemOverview.tsx

15 lines
317 B
TypeScript
Raw Normal View History

2025-11-24 14:54:05 +00:00
import Card from "../../../ui/Card";
import CardHeader from "../../../ui/CardHeader";
2025-11-24 16:17:27 +00:00
import SystemHealth from "./SystemHealth";
2025-11-24 14:54:05 +00:00
const SystemOverview = () => {
return (
<Card className="p-4">
2025-11-24 16:17:27 +00:00
<CardHeader title="System Health" />
<SystemHealth />
2025-11-24 14:54:05 +00:00
</Card>
);
};
export default SystemOverview;