You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
397 B
19 lines
397 B
const INITIAL_STATE = {
|
|
company: {
|
|
_id: '',
|
|
},
|
|
}
|
|
|
|
export default function account(state = INITIAL_STATE, action) {
|
|
switch (action.type) {
|
|
case 'UPDATE_ACCOUNT':
|
|
return {
|
|
...state,
|
|
...action.payload
|
|
}
|
|
case 'DELETE_ACCOUNT':
|
|
return INITIAL_STATE
|
|
default:
|
|
return state
|
|
}
|
|
}
|