first commit
This commit is contained in:
13
lib/components/household/reducer.js
Normal file
13
lib/components/household/reducer.js
Normal file
@@ -0,0 +1,13 @@
|
||||
'use strict'
|
||||
const {RECEIVE_HOUSEHOLD} = require('./action_constants')
|
||||
|
||||
module.exports = (state = {}, action) => {
|
||||
switch (action.type) {
|
||||
case RECEIVE_HOUSEHOLD:
|
||||
return Object.assign({}, state, {
|
||||
household: action.household
|
||||
})
|
||||
default:
|
||||
return state
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user