import { StatusBadge } from "@govoplan/core-webui"; import { humanize } from "../utils/campaignView"; export type DeliverabilityPreflightItem = { label: string; detail: string; state: "ready" | "warning" | "blocked" | "info"; }; export default function DeliverabilityPreflight({ items }: { items: DeliverabilityPreflightItem[]; }) { return (

Deliverability preflight

Operator checks before the first live send.
{items.map((item) => (
{item.label} {item.detail}
))}
); }