diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-12-13 10:13:57 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-13 10:13:57 -0800 |
commit | fca5aa3cdb5d335dca14115722cacae1b724fe4f (patch) | |
tree | 542416ca2e13ff811b818d2343e2b487fda97b86 /modern/src/App.js | |
parent | a4c2f0477dcda2662a3fd268f77a7549dead6e67 (diff) | |
parent | f8bb2fb5dfd801b7c49a3a3b66042e94dc7640dc (diff) | |
download | etbsa-traccar-web-fca5aa3cdb5d335dca14115722cacae1b724fe4f.tar.gz etbsa-traccar-web-fca5aa3cdb5d335dca14115722cacae1b724fe4f.tar.bz2 etbsa-traccar-web-fca5aa3cdb5d335dca14115722cacae1b724fe4f.zip |
Merge pull request #797 from mail2bishnoi/chart-report
Implementing chart report initial structure
Diffstat (limited to 'modern/src/App.js')
-rw-r--r-- | modern/src/App.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modern/src/App.js b/modern/src/App.js index 8a308c1..83fd931 100644 --- a/modern/src/App.js +++ b/modern/src/App.js @@ -21,6 +21,7 @@ import { LinearProgress } from '@material-ui/core'; import TripReportPage from './reports/TripReportPage'; import StopReportPage from './reports/StopReportPage'; import SummaryReportPage from './reports/SummaryReportPage'; +import ChartReportPage from './reports/ChartReportPage'; const App = () => { const initialized = useSelector(state => !!state.session.server && !!state.session.user); @@ -50,6 +51,7 @@ const App = () => { <Route exact path='/reports/trip' component={TripReportPage} /> <Route exact path='/reports/stop' component={StopReportPage} /> <Route exact path='/reports/summary' component={SummaryReportPage} /> + <Route exact path='/reports/chart' component={ChartReportPage} /> </Switch> )} </Route> |