[69507b]: / app / frontend / src / reducers / UserReducer.js

Download this file

12 lines (11 with data), 250 Bytes

 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
}
}