mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-11 21:12:31 +00:00
17 lines
293 B
JavaScript
17 lines
293 B
JavaScript
// @flow
|
|
|
|
import { TOGGLE_CHAT } from './actionTypes';
|
|
|
|
export * from './actions.any';
|
|
|
|
/**
|
|
* Toggles display of the chat panel.
|
|
*
|
|
* @returns {Function}
|
|
*/
|
|
export function toggleChat() {
|
|
return function(dispatch: (Object) => Object) {
|
|
dispatch({ type: TOGGLE_CHAT });
|
|
};
|
|
}
|