diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-03-27 00:11:05 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-03-27 00:11:05 -0700 |
commit | 79c36b9a84623fb99db0ab71cc9a31391f06489e (patch) | |
tree | 75bc69a49065e035941ab12185f691688786b09b /modern/src/RouteReportPage.js | |
parent | 94e7e64ec481cd004546f02869c1c0dd2904a406 (diff) | |
download | trackermap-web-79c36b9a84623fb99db0ab71cc9a31391f06489e.tar.gz trackermap-web-79c36b9a84623fb99db0ab71cc9a31391f06489e.tar.bz2 trackermap-web-79c36b9a84623fb99db0ab71cc9a31391f06489e.zip |
Partially implement device menu
Diffstat (limited to 'modern/src/RouteReportPage.js')
-rw-r--r-- | modern/src/RouteReportPage.js | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/modern/src/RouteReportPage.js b/modern/src/RouteReportPage.js index c444ffbc..86eeaaa0 100644 --- a/modern/src/RouteReportPage.js +++ b/modern/src/RouteReportPage.js @@ -1,16 +1,11 @@ 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'; +import withWidth from '@material-ui/core/withWidth'; const styles = theme => ({}); -class ReouteReportPage extends Component { +class RouteReportPage extends Component { render() { return ( <div> @@ -20,4 +15,4 @@ class ReouteReportPage extends Component { } } -export default withWidth()(withStyles(styles)(ReouteReportPage)); +export default withWidth()(withStyles(styles)(RouteReportPage)); |