DEV Community

Discussion on: 11 Awesome Resources To Bring Your React App to The Next Level

Collapse
 
apustula profile image
Aga • Edited

Hello there! @gdangelo is completely right! From my experience Redux can do the work! Let's imagine React form with dozens of fields eg. 80, with some crazy business logic where changing one field have impact on state of several other components. Doing this kind of app in 'pure' React would be a problematic. Thanks to Redux, you can retrieve value direct from Store without concern of components hierarchy.

Collapse
 
factordiceomar profile image
OmarC

Thanks. The application I'm working on is not that big so maybe that is why it feels a bit cumbersome. I do agree that Redux CAN do the work.