export const isAuthenticated = (state = false, action) => { switch (action.type) { default: return state; } };