Table
A collection of built-in components designed to create styled, non-markdown (i.e., literal) HTML tables.
Country | Flag |
---|---|
France | 🇫🇷 |
Ukraine | 🇺🇦 |
Code
<Table>
<thead>
<Table.Tr>
<Table.Th>Country</Table.Th>
<Table.Th>Flag</Table.Th>
</Table.Tr>
</thead>
<tbody>
<Tr>
<Table.Td>France</Table.Td>
<Table.Td>🇫🇷</Table.Td>
</Table.Tr>
<Table.Tr>
<Table.Td>Ukraine</Table.Td>
<Table.Td>🇺🇦</Table.Td>
</Table.Tr>
</tbody>
</Table>
Last updated on