Revisiting your Knowledge of Redux
Explore the fundamentals of Redux to understand how to transition state management from React components to Redux. Learn to remove internal component state from your App component and set up a Redux store to efficiently manage application state, enhancing predictability and organization in your React apps.
We'll cover the following...
We'll cover the following...
Remember the quote from the official docs ?
Redux is a predictable state container for JavaScript apps.
One key phrase in the above sentence is, state container.
Technically, you want the STATE of your application to be managed by REDUX. ...