13 lines
290 B
JavaScript
13 lines
290 B
JavaScript
'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
|
|
}
|
|
} |