JSFiddle - React, Tailwind, and code Playground
HTML
<label>Mostrar termos:</label> <input type="checkbox" id="termos" />
<div id="termoTexto">
Seus termos estarão aqui
</div>
CSS
input[type=checkbox]:checked ~ #termoTexto{
display: block;
}
#termoTexto {
display:none;
}