DEV Community

Discussion on: What is the future of Redux?

Collapse
 
6temes profile image
Daniel

Thank you for your answer.

We use Redux with Redux Thunk, Axios Middleware and a couple of custom middlewares we developed. We also use Reselect a lot.

As for the local state, we have a kind of rule: components in the design system do not know anything about Redux and have local state if needed. The components that are specific to our App are connected to Redux and pass the props and action creators to the design system components.

As for boilerplate, it really does not bother me. At the end, writing a new reducer takes me 3 minutes, and it's not something I do all the time. :)