您最多选择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. };