I am using table as per doc
<s-table>
<s-table-header-row >
<s-table-header listSlot="primary">Location</s-table-header>
<s-table-header listSlot="labeled" format="numeric">Completed</s-table-header>
</s-table-header-row>
<s-table-body>
{formattedData.map((dataPoint) => (
<s-table-row key={dataPoint.location}>
<s-table-cell>{dataPoint.location}</s-table-cell>
<s-table-cell>{dataPoint.completedOrders}</s-table-cell>
</s-table-row>
))}
</s-table-body>
</s-table>
Getting following warnings:
- header row missing [FALSE]
- ‘primary’ list slot missing [FALSE]
![]()
Thanks