JSFiddle - React, Tailwind, and code Playground

HTML

<div id="div" class="current active">
    hello
</div>

CSS

#div{
    height: 50px;
    width: 50px;
    background: green;    
}

#div.current{
    display: none;
}

#div.current .active {
    display: inline;
}