Dealing with Actions in Redux
Understand how actions work in a Redux app.
We'll cover the following...
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 ...