aboutsummaryrefslogtreecommitdiff
path: root/modern/src/RouteReportPage.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-07-25 12:36:19 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2020-07-25 12:36:19 -0700
commitd69bb2b2c3053c2c61e4e5d7029751debcfb0dd9 (patch)
treea8acdb87aea6c39ba1c0712186a2be1dadaff181 /modern/src/RouteReportPage.js
parent94be29b98ef9ca509c38c2576dc56828a788937e (diff)
downloadetbsa-traccar-web-d69bb2b2c3053c2c61e4e5d7029751debcfb0dd9.tar.gz
etbsa-traccar-web-d69bb2b2c3053c2c61e4e5d7029751debcfb0dd9.tar.bz2
etbsa-traccar-web-d69bb2b2c3053c2c61e4e5d7029751debcfb0dd9.zip
Implement simple route report
Diffstat (limited to 'modern/src/RouteReportPage.js')
-rw-r--r--modern/src/RouteReportPage.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/modern/src/RouteReportPage.js b/modern/src/RouteReportPage.js
deleted file mode 100644
index 6bbf01e..0000000
--- a/modern/src/RouteReportPage.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import React from 'react';
-import MainToobar from './MainToolbar';
-import withStyles from '@material-ui/core/styles/withStyles';
-import withWidth from '@material-ui/core/withWidth';
-import { useHistory } from 'react-router-dom';
-
-const styles = theme => ({});
-
-const RouteReportPage = () => {
- const history = useHistory();
-
- return (
- <div>
- <MainToobar history={history} />
- </div>
- );
-}
-
-export default withWidth()(withStyles(styles)(RouteReportPage));