UNPKG

react-notification-center

Version:

react-notification-center keep all your notification in a single place

10 lines (7 loc) 238 B
import EventEmitter from 'eventemitter3'; const emitter = new EventEmitter(); export const EE = emitter; export const EEmitter = { add: (data) => emitter.emit('add/notification', data), clear: () => emitter.emit('clear/all') };