TableHead
The header of a table with the column names.
Name | Instrument | Age |
---|
- React
- CSS
<TableHead>
<TableRow>
<TableCell>Cell</TableCell>
<TableCell>Cell</TableCell>
</TableRow>
</TableHead>
<thead class="table_head">
<tr class="table_row">
<th class="table_cell">Cell</th>
<th class="table_cell">Cell</th>
</tr>
</thead>