JSFiddle - React, Tailwind, and code Playground
Animation
HTML
<div class="myStyle"></div>
CSS
.myStyle{
background:#98bf21;
height:100px;
width:100px;
position:absolute;
}
JavaScript
$(function(){
$("div").animate({left: '250px'},5000);
})