JSFiddle - React, Tailwind, and code Playground

by Imabot

HTML

<table border="1">
  
  <!-- Entête -->
  <thead>
    <tr>
      <th>NOM</th>
      <th>NOTE</th>
    </tr>
  </thead>
  
  <!-- Corps du tableau -->
  <tbody>
    <tr>
      <th>Pierre</th>
      <td>16</td>
    </tr>
    <tr>
      <th>Paul</th>
      <td>14</td>
    </tr>
    <tr>
      <th>Jacques</th>
      <td>18</td>
    </tr>
  </tbody>

</table>