Guest User

Untitled

a guest
Jan 23rd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import { handleActions } from 'redux-actions';
  2.  
  3. import { DropdownActions } from '../actions/dropdown';
  4.  
  5. export const priceReducer = handleActions({
  6. ...,
  7.  
  8. [DropdownActions.closeAll]: state => ({ ...state, isOpen: false}),
  9. }, {});
Add Comment
Please, Sign In to add comment