531241d269
* 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
14 lines
429 B
JavaScript
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));
|