Using MobX with remix for a React project #1867
-
Remix as the framework and mobx as the data store? Is it a good idea? |
Beta Was this translation helpful? Give feedback.
Answered by
hollandThomas
Feb 10, 2022
Replies: 1 comment 1 reply
-
In general you don't need any of the "global state managers". Remix has you covered here, unless there's lots of global client-only state. If that's the case, you can totally use MobX or something more lightweight like zustand. For server-state, you can think of your database as your global store |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
machour
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In general you don't need any of the "global state managers". Remix has you covered here, unless there's lots of global client-only state. If that's the case, you can totally use MobX or something more lightweight like zustand.
For server-state, you can think of your database as your global store