24 lines
393 B
JavaScript
24 lines
393 B
JavaScript
import { HYDRATE } from 'next-redux-wrapper';
|
|
|
|
import * as actionTypes from '../constants/actionTypes';
|
|
import initialState from "./initialState";
|
|
|
|
const authReducer = (state = initialState.auth, action) =>
|
|
{
|
|
switch (action.type)
|
|
{
|
|
case actionTypes.AUTH:
|
|
{
|
|
return {
|
|
...state,
|
|
...action.data,
|
|
};
|
|
}
|
|
|
|
default: {
|
|
return state;
|
|
}
|
|
}
|
|
};
|
|
|
|
export default authReducer; |