Personal Dashboard

user.js 232B

123456789
  1. import { handleActions } from 'redux-actions'
  2. import { LOGIN, LOGOUT } from '../Actions'
  3. const user = handleActions({
  4. [LOGIN]: (state, action) => action.payload,
  5. [LOGOUT]: (state, action) => null
  6. }, null);
  7. export default user;