DEV Community

Discussion on: Can You Replace Redux with React Hooks?

Collapse
 
chrisachard profile image
Chris Achard

Yeah, that's my conclusion as well. If you don't like Redux however, there are alternatives. I know that many people love MobX, so that's worth checking out - and there are probably others.

For new projects so far, if I have small bits of state, I just share them with context to start; but once it grows beyond that, I always find myself switching back to Redux :)