user.reducer.js 228 B

12345678910
  1. import { LOGIN_SUCCESS, LOGIN_FAIL } from "../actions/user";
  2. export const userReducer = (state = {}, action) => {
  3. switch (action.type) {
  4. case "SET_USER":
  5. return (state = action.payload);
  6. default:
  7. return state;
  8. }
  9. };