Download this file
1 2 3 4 5 6 7 8 9 10 11 12
const INITIAL_STATE = {} export default (state = INITIAL_STATE, actions) => { switch(actions.type){ case "LOGIN_USER": return { "name":"Ivan Leo" } default: return state } }