// OVERLAY 07: ПРЕДЫДУЩИЕ ОЦЕНКИ (cache view). // Faithful markup port of МЕРА Оценка.dc.html lines 593-613. // Data from fixtures (cacheKpi + cacheRows); no API, no local state. import { tokens } from "./tokens"; import { cacheKpi, cacheRows } from "./fixtures"; const GRID_COLUMNS = "2.4fr 1fr 1fr 1fr"; export function CacheView() { return (
{/* 3 KPI cards */}
{cacheKpi.map((kpi) => (
{kpi.label}
{kpi.value} {kpi.unit && ( <> {kpi.unit !== "%" && " "} {kpi.unit} )}
{kpi.sub}
))}
{/* Последние оценки table */}
Последние оценки
АДРЕС ВРЕМЯ ИСТОЧНИКОВ СТАТУС
{cacheRows.map((r, i) => (
{r.addr} {r.time} {r.src} {r.status}
))}
); }