1 export const isAuthenticated = (state = false, action) => {
2 switch (action.type) {
3 default:
4 return state;
5 }
6 };