JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<th colspan=2>America</th>
</tr>
<tr>
<td>Tim</td>
<td>40</td>
</tr>
<tr>
<th colspan=2>Spain</th>
</tr>
<tr>
<td>Bob</td>
<td>22</td>
</tr>
</tbody>
</table>