JSFiddle - React, Tailwind, and code Playground
by Tjacke
HTML
<div id=moveIt>This is the div</div>
CSS
div {border: 1px solid #666}
JavaScript
document.getElementById('moveIt').addEventListener('mouseover', function(){
alert('hej');
}, false);