// Numbers section — market data function Numbers({ t }) { const narrow = window.useNarrow(768); return (
{t.stats.map((s, i) => (
{s.v}
{s.l}
))}
{t.footnote}
); } window.Numbers = Numbers;