JSFiddle - React, Tailwind, and code Playground
HTML
<div id="area" ></div>
CSS
#area {
width: 200px;
height: 200px;
background-color: yellow;
}
JavaScript
const mouseMove = function(event) {
console.log(event);
}
const test
const area = document.getElementById('area');
area.addEventListener('mousemove', (event) => {
console.log(event);
});