Integrates www.gigafibre.ca (React/Vite) into the monorepo. Full git history accessible via `git log -- apps/website/`. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
import { cn } from "@/lib/utils";
|
|
|
|
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
|
|
return <div className={cn("animate-pulse rounded-md bg-muted", className)} {...props} />;
|
|
}
|
|
|
|
export { Skeleton };
|