JSFiddle - React, Tailwind, and code Playground
by Superman
HTML
<div id="contentPost">
<h2>Hi there</h2>
</div>
CSS
#contentPost { display:none;}
JavaScript
$(document).ready(function() {
$("#contentPost").delay(2000).fadeIn(500);
});