// Stats bar — full-bleed Ink, giant mono numerals (the bold moment) function HpStats({ stats }) { return (
The numbers Tracked · audited · postback-verified
{stats.map((s, i) => (
{s.value}{s.suffix}
{s.label}
))}
); } window.HpStats = HpStats;