Skip to content

Instantly share code, notes, and snippets.

@gnaeus
Created April 26, 2017 12:52
Show Gist options
  • Save gnaeus/559de1fc18c3832ba569cba873a3a82a to your computer and use it in GitHub Desktop.
Save gnaeus/559de1fc18c3832ba569cba873a3a82a to your computer and use it in GitHub Desktop.
function usersReducer(state, action) {
switch (action.type) {
case CHANGE_NAME:
const { id, name } = action.payload;
return {
byId: {
...state.byId,
[id]: {
...state.byId[id],
name: name,
}
}
allIds: state.allIds,
};
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment