diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-03-25 23:50:06 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-03-25 23:50:06 -0700 |
commit | 94e7e64ec481cd004546f02869c1c0dd2904a406 (patch) | |
tree | 425924f753893fcb2231d860bcf5653f1addf28f /modern/src/RouteReportPage.js | |
parent | 1fc11fb0cc8bade149fa1724aa1fc33d95b772ce (diff) | |
download | trackermap-web-94e7e64ec481cd004546f02869c1c0dd2904a406.tar.gz trackermap-web-94e7e64ec481cd004546f02869c1c0dd2904a406.tar.bz2 trackermap-web-94e7e64ec481cd004546f02869c1c0dd2904a406.zip |
Add menu options
Diffstat (limited to 'modern/src/RouteReportPage.js')
-rw-r--r-- | modern/src/RouteReportPage.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/modern/src/RouteReportPage.js b/modern/src/RouteReportPage.js new file mode 100644 index 00000000..c444ffbc --- /dev/null +++ b/modern/src/RouteReportPage.js @@ -0,0 +1,23 @@ +import React, { Component } from 'react'; +import ContainerDimensions from 'react-container-dimensions'; +import MainToobar from './MainToolbar'; +import MainMap from './MainMap'; +import Drawer from '@material-ui/core/Drawer'; +import withStyles from '@material-ui/core/styles/withStyles'; +import SocketController from './SocketController'; +import withWidth, { isWidthUp } from '@material-ui/core/withWidth'; +import DeviceList from './DeviceList'; + +const styles = theme => ({}); + +class ReouteReportPage extends Component { + render() { + return ( + <div> + <MainToobar history={this.props.history} /> + </div> + ); + } +} + +export default withWidth()(withStyles(styles)(ReouteReportPage)); |