You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setup(attachStore){
const onStoreChange = attachStore() // No get state Fn
onIncoming(onStoreChange)
}
const cbs = []
// Called from outside
function messageIn(message){
cbs.forEach(cbOnChange => cbOnChange(message))
}
function onIncoming(cbOnChange){
cbs.push(cbOnChange)
}
The text was updated successfully, but these errors were encountered:
someting like:
The text was updated successfully, but these errors were encountered: