actions.js
5 lines
| 1 | export const setClosedBubble = ( state ) => ( { type: 'SET_CLOSE_BUBBLE', payload: state } ); |
| 2 | export const setShowContainer = ( state ) => ( { type: 'SET_SHOW_CONTAINER', payload: state } ); |
| 3 | export const setOpenPanels = ( state ) => ( { type: 'SET_OPEN_PANELS', payload: state } ); |
| 4 | export const setVisibleNotifications = ( state ) => ( { type: 'SET_VISIBLE_NOTIFICATIONS', payload: state } ); |
| 5 |