Michael Landis
Jun 24, 2021

--

Great article! I’m a huge fan of Redux. I do, however, find uses for Context still, for theming as well as for small, localized component groups.

I typically use Redux for global storage, but if I have a form or a multistep wizard that produces Redux-ready state, I’ll keep that “transient" state in a specific Context instead of cluttering Redux with “in progress" data stores.

This helps keep the Redux clean while keeping the transient data close to the impacted components.

--

--