10
You don't need external libraries for global state management in React
(prophet-bestman.hashnode.dev)
A community for discussing anything related to the React UI framework and it's ecosystem.
Icon base by Skoll under CC BY 3.0 with modifications to add a gradient
It really depends on what kind of state you're storing. For UI or other client stuff usually a context provider is enough. For server data/state I started using React Query a lot more. It syncs server data across components that use the same cache key, which is really powerful.