JSFiddle - React, Tailwind, and code Playground

by Eric Pias

HTML

<body>
       <table id="1" role="grid">
           <thead role="rowgroup">
               <tr role="row">
               <th role="gridcell">Col1</th>
               <th role="gridcell">col2</th>
               </tr>
           </thead>
           <tbody role="rowgroup">
               <tr role="row">
                   <td role="gridcell">data1</td>
                   <td role="gridcell">data2</td>
               </tr>
               <tr role="row">
                   <td role="gridcell">
                       <div>
                       <input name="c1" value="123456"/>
                       </div>
                   </td>
                   <td role="gridcell"><input name="c2" value="456"/></td>
               </tr>
           </tbody>
        </table>
        
    </body>