JSFiddle - React, Tailwind, and code Playground

by Town

HTML

<table>
  <thead>
    <tr>
      <th>One</th>
      <th>Two</th>
      <th>Three</th>
    </tr>
    <tr>
      <td>1</td>
      <td>2</td>
      <td>3</td>
    </tr>
  </thead>
</table>
<span>end</span>

CSS

table {border-collapse: collapse;}
td,th { border:1px solid;}