<DeliverableGrid>
financeAgendaDataPresentation
Compact deliverable table with owner, optional due date, and status.
When to use: Wave or sprint outcome tables on project update slides.
Preview
| Prop | Type | Notes |
|---|---|---|
| title | string | Optional. Default: Deliverables. Heading above the grid. |
| columns | 2 | 3 | Optional. Default: 3. 3 columns include Due; 2 columns omit Due.Values: 2, 3Example: 3 |
| rows | { deliverable: string; owner: string; due: string; status: string }[] | Required. Table rows; `due` is shown only when columns is 3. |
Examples
<DeliverableGrid
rows={[
{ deliverable: "Invoice API", owner: "Platform", due: "18 Jun", status: "In test" },
{ deliverable: "Playbooks", owner: "Change", due: "25 Jun", status: "Draft" },
]}
/>