JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td>Row with checked input</td>
        <td><input type=checkbox checked /></td>
        <td>should show.</td>
    </tr>
    <tr>
        <td>Row with unchecked input</td>
        <td><input type=checkbox /></td>
        <td>should be hidden.</td>
    </tr>
</table>

CSS

td:last-child { display:none; }
input:checked ~ td:last-child { display:inherit; }