This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
old-monorepo/Dashboard/app/renderer/reducers/user.js

14 lines
326 B
JavaScript

import { handleActions } from 'redux-actions';
import actions from '../actions/user';
export default handleActions(
{
[actions.login]: (state, action) => {
return { ...state, ...action.payload };
},
[actions.logout]: (state, action) => {
return { ...state, ...action.payload };
},
},
{},
);