import type { CSSProperties } from "react"; import { DashboardPanelSkeleton } from "@/components/dashboard/DashboardPanelSkeleton"; import { Card, CardContent, CardHeader } from "@/components/ui/card"; interface DashboardSkeletonProps { columns?: number; count?: number; } export function DashboardSkeleton({ columns = 2, count = 2, }: DashboardSkeletonProps) { return (
{Array.from({ length: count }, (_, i) => (
))}
); }