diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-03 19:32:19 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-03 19:32:19 -0700 |
commit | eb52cc9ed238be6bbcb33a0f95d336b1ea404253 (patch) | |
tree | a33e47e6fd648b707d253f058ec45b6cb002f77b /modern/src/App.js | |
parent | 02539d31ea7522fcfbbbcf4cf3fcd03e1961786f (diff) | |
download | trackermap-web-eb52cc9ed238be6bbcb33a0f95d336b1ea404253.tar.gz trackermap-web-eb52cc9ed238be6bbcb33a0f95d336b1ea404253.tar.bz2 trackermap-web-eb52cc9ed238be6bbcb33a0f95d336b1ea404253.zip |
Support accumulators reset
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 7a4af349..a64a8391 100644 --- a/modern/src/App.js +++ b/modern/src/App.js @@ -49,6 +49,7 @@ import { devicesActions } from './store'; import EventPage from './EventPage'; import PreferencesPage from './settings/PreferencesPage'; import BottomMenu from './components/BottomMenu'; +import AccumulatorsPage from './settings/AccumulatorsPage'; const useStyles = makeStyles(() => ({ root: { @@ -123,6 +124,7 @@ const App = () => { <Route exact path="/device/:id?" component={DevicePage} /> <Route exact path="/geofence/:id?" component={GeofencePage} /> <Route exact path="/geofences" component={GeofencesPage} /> + <Route exact path="/settings/accumulators/:id?" component={AccumulatorsPage} /> <Route exact path="/settings/preferences" component={PreferencesPage} /> <Route exact path="/settings/notifications" component={NotificationsPage} /> <Route exact path="/settings/notification/:id?" component={NotificationPage} /> |