export const tokenReducer = (state = {}, action) => { switch (action.type) { case "SET_TOKEN": return (state = action.payload); default: return state; } };