import {createEvent} from 'effector'
const sayHi = createEvent()
const unwatch = sayHi.watch(name => {
console.log(`${name}, hi there!`)
})
sayHi('Peter') // => Peter, hi there!
unwatch()
sayHi('Drew') // => nothing happened