JSFiddle - React, Tailwind, and code Playground

HTML

<input type=checkbox id="show">
<label for="show">Help?</label>
<span id="content">Do you need some help?</span>

CSS

#show,#content{display:none;}
#show:checked~#content{display:block;}