JSFiddle - React, Tailwind, and code Playground

by calder12

HTML

<table>
  <thead>
    <tr>
      <th>Player Name</th><th>GP</th><th>G</th><th>A</th><th>PTS</th>
      </tr>
  </thead>
  <tr>
    <td>Steven Stamkos</td><td>100</td><td>60</td><td>40</td><td>100</td>
  </tr>
  <tr>
    <td>Sidney Crosby</td><td>95</td><td>55</td><td>45</td><td>100</td>
  </tr>
  </table>

CSS

td, th {
  border: 1px solid #ccc;
  padding: 8px;
}