bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/mobile-app-modal/container.jsx
Gustavo Trott 531241d269
feat: Button to transfer user to mobile App (#15183)
* Provide a link to transfer user to mobile App
* show menu option only if appStoreLink is present and it is not running on mobile app already
2022-11-15 09:49:24 -03:00

14 lines
429 B
JavaScript

import React from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import MobileAppModal from './component';
import { withModalMounter } from '/imports/ui/components/common/modal/service';
const MobileAppModalContainer = (props) => <MobileAppModal {...props} />;
export default withModalMounter(withTracker(({ mountModal }) => ({
closeModal: () => {
mountModal(null);
},
}))(MobileAppModalContainer));