JSFiddle - React, Tailwind, and code Playground

by TrevorBurnham

HTML

<button id="button">
Hi there
</button>

JavaScript

document.querySelector('#button').addEventListener('mouseout', function(e) {
  console.log('mouseout');
});