2023-02-21 09:26:04 +00:00
|
|
|
import { PARTICIPANTS_PANE_CLOSE } from './actionTypes';
|
2021-06-11 13:12:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Action to close the participants pane.
|
|
|
|
*
|
|
|
|
* @returns {Object}
|
|
|
|
*/
|
|
|
|
export const close = () => {
|
|
|
|
return {
|
|
|
|
type: PARTICIPANTS_PANE_CLOSE
|
|
|
|
};
|
|
|
|
};
|