JSFiddle - React, Tailwind, and code Playground

HTML

<html>
      <head>
    
        <style>
          th:hover {
            cursor:pointer;
          }   
        </style>
    
      </head>
      <body>
    
        <table border="1">
          <tr>
            <th>Header 1</th>
            <th>Header 2</th>
          </tr>
          <tr>
            <td>value 1</td>
            <td>value 2</td>
          </tr>
        </table>
    
      </body>
    </html>