JSFiddle - React, Tailwind, and code Playground
by Wentz Wu
HTML
<p>
<a href="#newcomment">Show</a>
<a href="#done">Hide</a>
</p>
<div id="newcomment">
<form>
<p>Write your comment:
<br />
<textarea></textarea>
</p>
</form>
</div>
CSS
#newcomment {
display: none;
}
#newcomment:target {
display: block;
}