The table component is used to display data in a tabular format. It does not use the table element, but rather uses CSS Grid to achieve the same effect. These two components
are used to create a table layout:
<Table><TableRow><TableCell>columnsgrid-template-columns property.styledefault or bordered. Default
is default.hoverfalse.head<Table columns="1fr 1fr" hover>
<TableRow head>
<TableCell>Col 1</TableCell>
<TableCell>Col 2</TableCell>
</TableRow>
<TableRow>
<TableCell>Value 1</TableCell>
<TableCell>Value 2</TableCell>
</TableRow>
<TableRow>
<TableCell>Value 1</TableCell>
<TableCell>Value 2</TableCell>
</TableRow>
</Table><Table columns="1fr 100px 100px" style="bordered">
<TableRow head>
<TableCell>Feature</TableCell>
<TableCell>Hyvor Blogs</TableCell>
<TableCell>WordPress</TableCell>
</TableRow>
<TableRow section>
Hosting & Infrastructure
</TableRow>
<TableRow>
<TableCell>Fully managed hosting</TableCell>
<TableCell>Yes</TableCell>
<TableCell>No</TableCell>
</TableRow>
...
</Table>