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

13 lines
253 B
TypeScript
Raw Normal View History

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