token.reducer.js 168 B

12345678
  1. export const tokenReducer = (state = {}, action) => {
  2. switch (action.type) {
  3. case "SET_TOKEN":
  4. return (state = action.payload);
  5. default:
  6. return state;
  7. }
  8. };