2022-11-15 20:49:24 +08:00
|
|
|
import React from 'react';
|
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
|
|
|
|
|
|
|
import MobileAppModal from './component';
|
|
|
|
|
|
|
|
const MobileAppModalContainer = (props) => <MobileAppModal {...props} />;
|
|
|
|
|
2023-03-21 21:00:46 +08:00
|
|
|
export default withTracker(() => {})(MobileAppModalContainer);
|