import { Skeleton } from "@/components/ui/skeleton"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@/components/ui/table"; interface DataTableSkeletonProps { /** * Number of rows to render * @default 10 */ rows?: number; } // TODO: add checkbox skeleton (for MonitorTable e.g.) export function DataTableSkeleton({ rows = 3 }: DataTableSkeletonProps) { return (