JSFiddle - React, Tailwind, and code Playground

HTML

<ul>
    <li>One</li>
    <li class="hide">
        Two
        <ul>
            <li class="reshow">Re Show Me</li>
            <li>Inner 2</li>
        </ul>
    </li>
    <li>Three</li>
</ul>

CSS

.hide {visibility: hidden;}
.reshow {visibility: visible;}