A quick vibe-coded site to test response times of PLC.directory mirrors (over 3 attempts)
at main 234 B view raw
1import { cn } from "@/lib/utils"; 2 3function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) { 4 return <div className={cn("animate-pulse rounded-md bg-muted", className)} {...props} />; 5} 6 7export { Skeleton };