diff --git a/imports/ui/pages/ZonesMap/ZonesMap.js b/imports/ui/pages/ZonesMap/ZonesMap.js new file mode 100644 index 0000000..c5a0c8f --- /dev/null +++ b/imports/ui/pages/ZonesMap/ZonesMap.js @@ -0,0 +1,25 @@ +/* eslint-disable import/no-absolute-path */ +import React, { Fragment } from 'react'; +// import PropTypes from 'prop-types'; +import { translate } from 'react-i18next'; +import SubscriptionsMap from '/imports/ui/pages/Subscriptions/SubscriptionsMap'; + +class ZonesMap extends React.Component { + componentDidMount() { + // this.setState({init: true}); + } + + render() { + return ( + + + + ); + } +} + +ZonesMap.propTypes = { + // history: PropTypes.object.isRequired +}; + +export default translate([], { wait: true })(ZonesMap);