JSFiddle - React, Tailwind, and code Playground

by Lijo

HTML

<table id = "myTable">
        <thead>
            <tr>
                <th>
                     Name
                </th>
                <th>
                    Address
                </th>
        <th>
                    Age
                </th>
            </tr>
        </thead>
        <tr>
            <td>
                Lijo
            </td>
            <td>
                India
            </td>
        <td>
                27
            </td>
        </tr>
    </table>