KA
Size: a a a
KA
AM
SB
KA
AK
SB
SB
AK
SB
const store = createStore(0)
store.watch(console.log)
const event = createEvent()
store.on(event, (state, payload) => payload)
event(1000)
// console.log: 1000
// In any time and in any project part
const otherEvent = createEvent()
store.on(otherEvent, (state, payload) => payload)
otherEvent(2000)
// console.log: 2000
S
const store = createStore(0)
store.watch(console.log)
const event = createEvent()
store.on(event, (state, payload) => payload)
event(1000)
// console.log: 1000
// In any time and in any project part
const otherEvent = createEvent()
store.on(otherEvent, (state, payload) => payload)
otherEvent(2000)
// console.log: 2000
SB
s
const store = createStore(0)
store.watch(console.log)
const event = createEvent()
store.on(event, (state, payload) => payload)
event(1000)
// console.log: 1000
// In any time and in any project part
const otherEvent = createEvent()
store.on(otherEvent, (state, payload) => payload)
otherEvent(2000)
// console.log: 2000
M
M
s
SB
M
SB