evoleasing-account/reducers/companyReducer.js
2021-11-11 13:40:44 +03:00

32 lines
497 B
JavaScript

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