You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
629 B

const initialState = {
username: "",
address: "0x0",
avatarUrl: "",
hasSignedUp: null
};
const userReducer = (state = initialState, action) => {
switch (action.type) {
case 'USER_HAS_SIGNED_UP':
return {
username: action.username,
address: action.address,
hasSignedUp: true
};
case 'USER_IS_GUEST':
return {
username: "",
address: action.address,
hasSignedUp: false
};
default:
return state
}
};
export default userReducer;