TableBody
The content of a table component.
John | Guitar | 20 | |
Paul | Bass guitar | 18 | |
George | Guitar | 17 | |
Ringo | Drums | 20 |
- React
- CSS
<TableBody>
<TableRow>
<TableCell>Cell</TableCell>
<TableCell>Cell</TableCell>
</TableRow>
{/* repeat <TableRow /> */}
</TableBody>
<tbody class="table_body">
<tr class="table_row">
<td class="table_cell">Cell</td>
<td class="table_cell">Cell</td>
</tr>
<!-- repeat <tr /> -->
</tbody>