SolidJSS
SolidJSโ€ข3y agoโ€ข
2 replies
zimo

Can I react/listen on store changes?

I a variable I have been explicitly listening on changes to:
  createEffect(on(mySignal, () => {
    doThing();
  }));


Now I also have a store. But I can't do on([mySignal, myStore], ...)

Is there another way?
Was this page helpful?