JSFiddle - React, Tailwind, and code Playground

by vaibhav saxena

HTML

<div id='ticTacToe'>
  
  <table>
  
    <tr class='row'>
        <td class='cell'> </td>
        <td class='cell'> </td>
        <td class='cell'> </td>
    </tr>
    
    <tr class='row'>
        <td class='cell'> </td>
        <td class='cell'> </td>
        <td class='cell'> </td>
    </tr>
    
    <tr class='row'>
        <td class='cell'> </td>
        <td class='cell'> </td>
        <td class='cell'> </td>
    </tr>
  
  </table>


</div>

CSS

.cell{
  height: 50px;
  width: 50px;
  background: #2a2a2a;
}

JavaScript

var cells = document.querySelectorAll('.cell');