Introduction🔥warningWIP Package currently only supporting React!Handy package for emitting UI updatesEvents are handy for emitting UI updates and passing data with them.const MY_EVENT = new Event(App);MY_EVENT.on((data) => {console.log("hello there " + data.name)}); // Print 'hello there jeff' if Event gets triggeredMY_EVENT.trigger({name: "jeff"}); // Trigger EventCopy