'use strict' const {RECEIVE_SHOPPING_LIST} = require('./action_constants') module.exports = (state = {}, action) => { switch (action.type) { case RECEIVE_SHOPPING_LIST: return Object.assign({}, state, { items: action.items }) default: return state } }