JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
CSS
div {
height: 50px;
width: 50px;
background: red;
}
JavaScript
document.getElementsByTagName('div')[0].addEventListener("mouseover", function(){ console.log('yo') })