Adding Recipes
Implement the function to add recipes to the app you are creating.
We'll cover the following...
To implement adding recipes, we need to find a way to modify our store. reducers
can only do store modifications in response to actions
. This means we need to define an action structure
and modify our reducer
to support it.
Actions
in Redux are nothing more than plain objects that have a mandatory type
property. We will be using ...