Updating the Root Reducer
Let’s update the rootReducer to support persistence.
We'll cover the following...
To support persistence, we need to update the root reducer first. We’ll change our original file:
import { combineReducers } from 'redux';
import recipes from './recipes';
import ingredients from
...