JSFiddle - React, Tailwind, and code Playground

by João Vitor Scheuermann

HTML

<div id="teste"></div>

CSS

#teste {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  background-color: red;
}

JavaScript

let _DOMelement = document.getElementById("teste");
	
  
  let to = {
  	left: 50,
    top: 50
  }
  
  let animationData = {}