import { Skeleton } from "@/components/ui/skeleton"; import { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, } from "@/components/ui/table"; import { cn } from "@/lib/utils"; export default function DevicesTableSkeleton() { return ( <>
Table of all devices. Device Name MAC Address # {Array.from({ length: 10 }).map((_, i) => ( ))}
{Array.from({ length: 10 }).map((_, i) => ( ))}
); } function DeviceCardSkeleton() { return (
); }