Composition recipe
Use Table for static markup. For interactive application tables, install the source-owned TanStack Table v9 starters from the Tables Explorer.
<Table>
<TableHeader>
<TableRow>
<TableHead>Name</TableHead>
<TableHead>Status</TableHead>
</TableRow>
</TableHeader>
<TableBody>{rows.map((row) => (
<TableRow key={row.id}>
<TableCell>{row.name}</TableCell>
<TableCell>{row.status}</TableCell>
</TableRow>
))}</TableBody>
</Table>