JSFiddle - React, Tailwind, and code Playground

HTML

<form method="post">
    <input name="show[1]" type="radio" value="1" required/>Show
    <br>
    <input name="show[1]" type="radio" value="0" required/>Hide
    <br>
    <input name="show[2]" type="radio" value="1" required/>Show
    <br>
    <input name="show[2]" type="radio" value="0" required/>Hide
    <br>
    <input name="show[n]" type="radio" value="1" required/>Show
    <br>
    <input name="show[n]" type="radio" value="0" required/>Hide
    <br>
    <input type="submit" value="submit" />
</form>