Personal Dashboard

user.js 217B

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