DEV Community

Discussion on: Why I Stopped Using Redux

Collapse
 
spicecoder profile image
pronab pal

I don't have too much experience with Redux , but I believe fundamentally Redux is trying to address inter-component state management issue , & it is not necessarily geared towards back-end sync solution ; I agree many times Redux is not needed because to start with not many developers plan to sync multiple components as it brings another level of complexity in the App , but from re usability and modular design perspective that make sense e.g to treat shopping cart item list and total current value of items as separate components , e.g the payment module need not need to know what items are there as long the total value is correct...