JSFiddle - React, Tailwind, and code Playground
HTML
<button id="button">
Hi there
</button>
JavaScript
document.querySelector('#button').addEventListener('mouseout', function(e) {
console.log('mouseout');
});
<button id="button">
Hi there
</button>
document.querySelector('#button').addEventListener('mouseout', function(e) {
console.log('mouseout');
});