1234567891011121314151617181920212223242526 |
- import {
- PARTICIPANTS_PANE_CLOSE,
- PARTICIPANTS_PANE_OPEN
- } from './actionTypes';
-
- /**
- * Action to close the participants pane.
- *
- * @returns {Object}
- */
- export const close = () => {
- return {
- type: PARTICIPANTS_PANE_CLOSE
- };
- };
-
- /**
- * Action to open the participants pane.
- *
- * @returns {Object}
- */
- export const open = () => {
- return {
- type: PARTICIPANTS_PANE_OPEN
- };
- };
|