DEV Community

Discussion on: What to learn and use for statement management in React ?

Collapse
 
andreidascalu profile image
Andrei Dascalu

I would say learn Redux and Context. Redux is the most popular and has lots of resources and examples (though not all of them are the best). Context is the native way to handle state. It has the advantage of not polluting your modules with extra packages and fits lots of base use cases.