JSFiddle - React, Tailwind, and code Playground

HTML

<div id="MyDiv">
    This is my div
</div>

CSS

#MyDiv {
   opacity: 0            
}

JavaScript

$('#MyDiv').fadeIn(400, function(){
$(this).css('opacity', .5)
});