2018-12-20 17:23:07 +01:00

15 lines
253 B
JavaScript

// @flow
import { hideDialog } from '../base/dialog';
import { RemoteVideoMenu } from './components';
/**
* Hides the remote video menu.
*
* @returns {Function}
*/
export function hideRemoteVideoMenu() {
return hideDialog(RemoteVideoMenu);
}