We use the table element to present tabular data in two dimensions.
Users may need to sort the rows of data based on values in a particular column.
This is a work in progress. The subject as a link isn’t part of the pattern.
<table class="table">
<thead class="table--head">
<th scope="col" class="table--header--cell">Column A</th>
<th scope="col" class="table--header--cell">Column B</th>
</thead>
<tbody>
<tr class="table--row">
<td class="table--cell">Cell A1</td>
<td class="table--cell">Cell B1</td>
</tr>
<tr class="table--row">
<td class="table--cell">Cell A2</td>
<td class="table--cell">Cell B2</td>
</tr>
</tbody>
</table>
/* No context defined for this component. */