/** * ============================================================================= * QWHPI — Quebec Weekly Housing Price Index * Author : Simon-Pierre Boucher * Contact : contact@spboucher.ai * File : web/components/Skeleton.tsx * Purpose : Shimmer skeleton loaders — tiles, charts, tables (no "Loading…"). * ============================================================================= */ export function SkeletonBlock({ h = 20, w = "100%", style = {} }: { h?: number; w?: number | string; style?: React.CSSProperties; }) { return (
); } export function TileSkeleton() { return (
); } export function ChartSkeleton({ height = 340 }: { height?: number }) { return (
); } export function TableSkeleton({ rows = 8 }: { rows?: number }) { return (
{Array.from({ length: rows }, (_, i) => ( ))}
); } export function DashboardSkeleton() { return ( <>
{Array.from({ length: 4 }, (_, i) => )}
); }