function KpiStrip({ items }) { return (
{items.map((it, i) => (
{it.label}
{it.value}
{it.delta}
))}
); } window.KpiStrip = KpiStrip;