JSFiddle - React, Tailwind, and code Playground
HTML
<h1>Hello</h1>
CSS
h1{display:none}
JavaScript
$(document).ready(function(){
$("h1").fadeIn("slow").animate({ fontSize : '40px' });
})
<h1>Hello</h1>
h1{display:none}
$(document).ready(function(){
$("h1").fadeIn("slow").animate({ fontSize : '40px' });
})