JSFiddle - React, Tailwind, and code Playground
by ashfame
HTML
<div id="a">BOX</div>
JavaScript
document.getElementById('a').addEventListener('click', boo, false);
function boo() {
console.log('run');
}
by ashfame
<div id="a">BOX</div>
document.getElementById('a').addEventListener('click', boo, false);
function boo() {
console.log('run');
}