JSFiddle - React, Tailwind, and code Playground
HTML
<div id="moveme">Hello</div>
JavaScript
$(document).ready(function(){
$("#moveme").click(function(event){
$(this).animate({'margin-left': '+=50', 'margin-top': '+=50'}, 1000);
});
});