{
... ,
user : { ... } ,
...
}
function reducer(state, action){
switch (action.type){
...
case 'CHANGE_USER_DATA':{
return {
...state,
user : {
...state.user,
action.prop : action.value
}
}
}
...
}
}
return {
...state,
user : {
...state.user,
[action.prop] : action.value
}
}