JSFiddle - React, Tailwind, and code Playground

by Leo Cavalcante

JavaScript

var handler = function(event) {
    console.log(event);
};

addEventListener('customEvent', handler, false);
dispatchEvent(new Event('customEvent'));