Introduction
Explore different methods for managing side effects in Redux, understanding action creators, middleware approaches, and community libraries. Learn to keep UI and business logic separate while handling synchronous and asynchronous actions.
We'll cover the following...
We'll cover the following...
Redux is a great tool that addresses one of the main problems of UI frameworks: state management. The unidirectional data flow model makes it easy to understand how events change the state. However, there’s one problem Redux doesn’t solve out of the box: the management of side effects.
Side effects are functions that modify the state value outside ...