Created
March 15, 2017 20:52
-
-
Save kocisov/b1df9b3e43011054f2d8b86a06879b49 to your computer and use it in GitHub Desktop.
User reducer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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