Revisiting your Knowledge of Redux

Redux is a state container, and in this lesson, we'll take our first step in handling the app's state object with Redux.

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.

This is what makes Redux a state container.

Your React component state still exists. Redux doesn’t take it away.

However, REDUX will efficiently manage your overall APPLICATION STATE. Like a bank vault, it’s got a STORE to do that.

For the simple <App/> component we’ve got here, the state object is simple.

Here it is:

Get hands-on with 1200+ tech skills courses.