JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test"></div>
CSS
#test {
transition: transform 1s linear;
display: inline-block;
width: 50px;
height: 50px;
background-color: green;
}
JavaScript
document.getElementById('test').style.transform = 'translateX(200px)';