skeleton-grid.tsx
1 import { Skeleton } from './ui/skeleton'; 2 3 export function SkeletonGrid() { 4 return ( 5 <div className="grid auto-rows-min gap-4 md:grid-cols-3"> 6 <Skeleton className="h-48 w-full" /> 7 <Skeleton className="h-48 w-full" /> 8 <Skeleton className="h-48 w-full" /> 9 <Skeleton className="h-48 w-full" /> 10 <Skeleton className="h-48 w-full" /> 11 <Skeleton className="h-48 w-full" /> 12 </div> 13 ); 14 }