Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526
  1. import {
  2. PARTICIPANTS_PANE_CLOSE,
  3. PARTICIPANTS_PANE_OPEN
  4. } from './actionTypes';
  5. /**
  6. * Action to close the participants pane.
  7. *
  8. * @returns {Object}
  9. */
  10. export const close = () => {
  11. return {
  12. type: PARTICIPANTS_PANE_CLOSE
  13. };
  14. };
  15. /**
  16. * Action to open the participants pane.
  17. *
  18. * @returns {Object}
  19. */
  20. export const open = () => {
  21. return {
  22. type: PARTICIPANTS_PANE_OPEN
  23. };
  24. };