From 28d8f695c1af16b56dd64c7f47a7e2e36a92ccaf Mon Sep 17 00:00:00 2001 From: vjrj Date: Mon, 12 Feb 2018 12:18:40 +0100 Subject: [PATCH] Added zones map nav link --- imports/ui/pages/ZonesMap/ZonesMap.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 imports/ui/pages/ZonesMap/ZonesMap.js 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);