todos-contra-el-fuego-web/imports/ui/pages/ZonesMap/ZonesMap.js
2018-03-03 11:41:12 +01:00

28 lines
547 B
JavaScript

/* eslint-disable react/jsx-indent-props */
/* eslint-disable import/no-absolute-path */
/* eslint-disable import/no-absolute-path */
import React, { Component } from 'react';
import SubscriptionsMap from '/imports/ui/pages/Subscriptions/SubscriptionsMap';
export default class ZonesMap extends Component {
constructor(props) {
super(props);
this.state = {
};
}
render() {
return (
<div>
<SubscriptionsMap {...this.props} />
</div>
);
}
}
ZonesMap.propTypes = {
};
ZonesMap.defaultProps = {
};