JSFiddle - React, Tailwind, and code Playground
HTML
<div class="potato"></div>
<div class="potato"></div>
<div class="potato"></div>
CSS
.potato{
float:left;
margin-top:100px;
margin-left:10px;
width:20px;
height:20px;
background-color:red;
}
JavaScript
$('.potato').each(function(){
setTimeout(function(){
$(this).animate({marginTop:0}, 200);
}.bind(this), 1000)
});