JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td>
            <input type="checkbox" name="myTextEditBox" value="checked" /> checkbox
        </td>
    </tr>
</table>

CSS

table {
    border: 1px solid;
    width: 200px;
}

tr {
    height: 80px;   
}

td {
    text-align: center;
    vertical-align: middle;  
}