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
Originally posted by MateuszDev96 December 30, 2024
Personally, I don't use createStore in my project even for more complex data because there is a bit too much ‘magic’ there for me and using createSignal I can handle react-js without any problems and I already explain what I think about all this
Discussed in #2390
Originally posted by MateuszDev96 December 30, 2024
Personally, I don't use
createStore
in my project even for more complex data because there is a bit too much ‘magic’ there for me and usingcreateSignal
I can handle react-js without any problems and I already explain what I think about all thisExample from react-js
and react handles the reactivity after the setter is called
Example solid-js
I use
useMemo
orcreateMemo
which basically gives the same results in both solutions and I don't understand why we need to set ProxyThe text was updated successfully, but these errors were encountered: