/** Loading placeholder block. Use instead of a bare "Loading…" string wherever the eventual * content has a predictable shape (cards, table rows, stat tiles). */ export function Skeleton({ className }: { className?: string }) { return
; } export function SkeletonCard() { return (
); } export function SkeletonRow({ cols = 5 }: { cols?: number }) { return ( {Array.from({ length: cols }).map((_, i) => ( ))} ); }