import { HYDRATE } from 'next-redux-wrapper'; import * as actionTypes from '../constants/actionTypes'; import initialState from "./initialState"; const userReducer = (state = initialState.user, action) => { switch (action.type) { case actionTypes.USER: { return { ...state, ...action.data, }; } default: { return state; } } }; export default userReducer;