DEV Community

Discussion on: I'm getting rid of Redux

Collapse
 
unmur profile image
unmur

Couldn't agree more 👍
In our team we also started to remove/refactor Redux, that will only stay for some minor data sharing across the whole app (couple of selectors/dispatchers).

Would just add, don't put async stuff and business logic into redux, create hooks instead, and put business logic close to component that is responsible for it (not the whole app needs to know about it).

SWR is an awesome library 🚀