import { handleActions } from 'redux-actions' import { LOGIN, LOGOUT } from '../Actions' export const user = handleActions({ [LOGIN]: (state, action) => action.payload, [LOGOUT]: (state, action) => null }, null);