user.reducer.js 238 B

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