14 lines
429 B
React
14 lines
429 B
React
|
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));
|