import { Card, CardContent, CardHeader } from "@/components/ui/card"; export function DashboardSkeleton() { return (
{[1, 2, 3].map((i) => (
))}
); }