Tell us what’s happening:
Can t pass
Your code so far
// change code below this line
const LOGIN = "LOGIN";
const LOGOUT = "LOGOUT";
const loginUser = () => {
return {
type: LOGIN
};
};
const logoutUser = () => {
return {
type: LOGOUT
};
};
// change code above this line
const defaultState = {
authenticated: false
};
const authReducer = (state = defaultState, action) => {
switch (action.type) {
case 'LOGIN':
return {
authenticated: true
}
case 'LOGOUT':
return {
authenticated: false
}
default:
return state;
}
};
const store = Redux.createStore(authReducer);
const loginUser = () => {
return {
type: 'LOGIN'
}
};
const logoutUser = () => {
return {
type: 'LOGOUT'
}
};
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36
.
Challenge: Use const for Action Types
Link to the challenge: