JSFiddle - React, Tailwind, and code Playground
HTML
<div class="test"></div>
CSS
.test{
width:50px;
height:50px;
border:1px solid black;
background-color: #EEE;
display:none;
}
JavaScript
$('.test').show();
<div class="test"></div>
.test{
width:50px;
height:50px;
border:1px solid black;
background-color: #EEE;
display:none;
}
$('.test').show();