Skip to content

Instantly share code, notes, and snippets.

@kocisov
Created March 15, 2017 20:52
Show Gist options
  • Save kocisov/b1df9b3e43011054f2d8b86a06879b49 to your computer and use it in GitHub Desktop.
Save kocisov/b1df9b3e43011054f2d8b86a06879b49 to your computer and use it in GitHub Desktop.
User reducer
const CHANGE = '.../user/CHANGE'
export default function user (state = {
name: 'Koci',
avatar: '//placecage.com/200/200',
rank_group: 5,
points: 1341
}, action) {
switch (action.type) {
case CHANGE:
return {
...state,
...action.data
}
default:
return state
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment