/** * ============================================================================= * 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 (