/** * First-load placeholder: CSS shimmer blocks shown while a section has no data * and no error. The visible blocks are aria-hidden; the real loading text is * kept for screen readers via a visually-hidden status node. */ export function SectionSkeleton({ label, rows = 4, chart = false }: { label: string; rows?: number; chart?: boolean }) { return (
{label}
) }