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>
column
grid-template-columns
property.hover
false
.head
<Table columns="1fr 1fr" hover>
<TableRow head>
<div>Col 1</div>
<div>Col 2</div>
</TableRow>
<TableRow>
<div>Value 1</div>
<div>Value 2</div>
</TableRow>
<TableRow>
<div>Value 1</div>
<div>Value 2</div>
</TableRow>
</Table>