Initial commit
This commit is contained in:
16
plop-templates/Page/reducer.js.hbs
Normal file
16
plop-templates/Page/reducer.js.hbs
Normal file
@@ -0,0 +1,16 @@
|
||||
import Immutable from 'immutable'
|
||||
import {UPDATE_FORM_ERRORS, UPDATE_FORM_VALUES} from './actions'
|
||||
|
||||
const initialState = Immutable.Map()
|
||||
|
||||
const reducer = (state = initialState, action) => {
|
||||
switch (action.type) {
|
||||
case UPDATE_FORM_ERRORS:
|
||||
case UPDATE_FORM_VALUES:
|
||||
return state.mergeDeep(action.payload)
|
||||
default:
|
||||
return state
|
||||
}
|
||||
}
|
||||
|
||||
export default reducer
|
||||
Reference in New Issue
Block a user