2017-04-19 03:06:51 +08:00
|
|
|
import React from 'react';
|
2018-01-08 12:44:42 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2017-04-19 03:06:51 +08:00
|
|
|
import { getModal } from './service';
|
|
|
|
|
2018-01-08 12:44:42 +08:00
|
|
|
export default withTracker(() => ({ modalComponent: getModal() }))(({ modalComponent }) => modalComponent);
|