Added zones map nav link
This commit is contained in:
parent
ac0fa6cebd
commit
28d8f695c1
1 changed files with 25 additions and 0 deletions
25
imports/ui/pages/ZonesMap/ZonesMap.js
Normal file
25
imports/ui/pages/ZonesMap/ZonesMap.js
Normal file
|
|
@ -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 (
|
||||||
|
<Fragment>
|
||||||
|
<SubscriptionsMap />
|
||||||
|
</Fragment>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ZonesMap.propTypes = {
|
||||||
|
// history: PropTypes.object.isRequired
|
||||||
|
};
|
||||||
|
|
||||||
|
export default translate([], { wait: true })(ZonesMap);
|
||||||
Loading…
Add table
Add a link
Reference in a new issue