JSFiddle - React, Tailwind, and code Playground
by Jairo Fontes
HTML
<script src="https://code.jquery.com/jquery-1.12.3.min.js"></script>
<div class="box">
teste
</div>
CSS
.box{
background:#FAD;
padding:30px;
}
JavaScript
$(document).ready(function() {
$(".box").hide();
}