Proper ways for state management in remix? #915
-
Hello fellas 👋 I new to the remix and I wonder is there any state management library for remix or can I just use React state management libraries like redux? Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Answered by
MichaelDeBoey
Dec 6, 2021
Replies: 1 comment 40 replies
-
In theory you can use whatever state management library you want, but with Remix it's not necessary to use any of them since you're getting all your data from the server with the |
Beta Was this translation helpful? Give feedback.
40 replies
Answer selected by
muraterzioglu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In theory you can use whatever state management library you want, but with Remix it's not necessary to use any of them since you're getting all your data from the server with the
useLoaderData
hook