JSFiddle - React, Tailwind, and code Playground

by InvestReads

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="table-result">
    <table style="width:100%">
        <thead>
        <tr>
            <th name="firstname">Firstname</th>
            <th name="lastname">Lastname</th>
            <th name="age">Age</th>
        </tr>
        </thead>
        <tr>
            <td>Jill</td>
            <td>Smith</td>
            <td>50</td>
        </tr>
        <tr>
            <td>Eve</td>
            <td>Jackson</td>
            <td>94</td>
        </tr>
    </table>
</div>