JSFiddle - React, Tailwind, and code Playground
JavaScript
//b
const cbFunc = (e) => {
console.log('ruiing', e.data)
}
document.addEventListener('testEvent', cbFunc, false)
//a
const evt = new Event("testEvent");
evt.data = {name: '123'}
document.dispatchEvent(evt);