sidebarPanelActions.tsx 173 B

123456789
  1. import Reflux from 'reflux';
  2. const SidebarPanelActions = Reflux.createActions([
  3. 'activatePanel',
  4. 'togglePanel',
  5. 'hidePanel',
  6. ]);
  7. export default SidebarPanelActions;