JSFiddle - React, Tailwind, and code Playground

HTML

<div id="test"> salam </div>

CSS

#test{
    width:100px;
    height:100px;
    background:blue;
}

JavaScript

$(document).ready($(function(e){
$("#test").hide();
});