aboutsummaryrefslogtreecommitdiff
path: root/modern/src/RouteReportPage.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-03-25 23:50:06 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2020-03-25 23:50:06 -0700
commit94e7e64ec481cd004546f02869c1c0dd2904a406 (patch)
tree425924f753893fcb2231d860bcf5653f1addf28f /modern/src/RouteReportPage.js
parent1fc11fb0cc8bade149fa1724aa1fc33d95b772ce (diff)
downloadetbsa-traccar-web-94e7e64ec481cd004546f02869c1c0dd2904a406.tar.gz
etbsa-traccar-web-94e7e64ec481cd004546f02869c1c0dd2904a406.tar.bz2
etbsa-traccar-web-94e7e64ec481cd004546f02869c1c0dd2904a406.zip
Add menu options
Diffstat (limited to 'modern/src/RouteReportPage.js')
-rw-r--r--modern/src/RouteReportPage.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/modern/src/RouteReportPage.js b/modern/src/RouteReportPage.js
new file mode 100644
index 0000000..c444ffb
--- /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));