What's the general consensus in this channel for L...
# orm-help
i
What's the general consensus in this channel for Local State Management when using Apollo Client in your app? • Apollo Client (apollo-link-state) • Redux / MobX / etc
h
I generally tend to rely on the new context API if I am already using apollo as it already does the data management part in it's store. Context API is used for that parts the needs to be shared. apollo-link-state is also good but the code to set that up and querying the store using the API is not very elegant at times if your component is presentational and not already using a graphql query.
šŸ‘ 1
i
Missed your reply @Harshit — thanks for your input. I agree, I'm using Context API for now and the
useContext
hook makes everything a breeze.
šŸ™Œ 1