import { Card } from "../common/Card"; import { ValuePair } from "../common/ValuePair"; import type { SnapshotGroupRow } from "../../types"; interface PhaseGridProps { rows: SnapshotGroupRow[]; } export function PhaseGrid({ rows }: PhaseGridProps) { return (
{rows.map((row) => (
{row.label}
))}
); }