JSFiddle - React, Tailwind, and code Playground

by brycenesbitt

HTML

<table border=1>
    <thead>
        <th>ID</th>
        <th>Name</th>
        <th>Department</th>
        <th>Started</th>
    </thead>
    <tbody>
        <tr>
            <td rowspan=2>6</td>
            <td>
                <div>John Doe</div>
            </td>
            <td>Sales</td>
            <td>Feb. 12th 2010</td>
        </tr>
        <tr>
            <td colspan=3>
                <div>12 Sales Total; 4 March, 3 April, 12 July, 14 August</div>
            </td>
        </tr>
    </tbody>
</table>