...

/

Dealing with Actions in Redux

Dealing with Actions in Redux

Understand how actions work in a Redux app.

Introduction to actions

When a user interaction happens in our components, we can trigger an action. An action is just a JavaScript object that contains information about what type of operations will mutate the state.

Redux forwards these actions to reducer ...