JSFiddle - React, Tailwind, and code Playground
HTML
<div class="side">
</div>
CSS
.side{
width:300px;
height:300px;
border:1px solid #000000;
position:absolute;
right:-200px;
}
JavaScript
setTimeout(function(){
$('.side').animate({right:"0px"},500);
},1000);