Files
jitsi-meet/react/features/chat/actions.native.js
Saúl Ibarra Corretgé fde7cf4ab8 chat: fix crash on mobile
2020-07-21 15:25:19 +02:00

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 });
};
}