interface OpsCheck { label: string; } export function OpsStack({ sectionNumber, title, description, checks, }: { sectionNumber: string; title: string; description: string; checks: OpsCheck[]; }) { return (
{sectionNumber}

{title}

{description}

); }