diff options
author | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2020-11-13 15:01:01 +0530 |
---|---|---|
committer | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2020-11-13 15:01:01 +0530 |
commit | 28d1fc9ce25922467498df1a0b602afc37ca89af (patch) | |
tree | d89eddfdebfd60adfb27a97d5824aedc12c52fad /modern/src/App.js | |
parent | 42cf49c219f0455537eccaf76cf8febf2dae6730 (diff) | |
download | trackermap-web-28d1fc9ce25922467498df1a0b602afc37ca89af.tar.gz trackermap-web-28d1fc9ce25922467498df1a0b602afc37ca89af.tar.bz2 trackermap-web-28d1fc9ce25922467498df1a0b602afc37ca89af.zip |
Implementing Daily Summary Report
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 8a308c17..c54e6485 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 DailySummaryReportPage from './reports/DailySummaryReportPage'; 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/daily-summary' component={DailySummaryReportPage} /> </Switch> )} </Route> |