diff options
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 e12a2e78..57e44621 100644 --- a/modern/src/App.js +++ b/modern/src/App.js @@ -47,6 +47,7 @@ import useQuery from './common/useQuery'; import { useEffectAsync } from './reactHelper'; import { devicesActions } from './store'; import EventPage from './EventPage'; +import PreferencesPage from './settings/PreferencesPage'; const App = () => { const history = useHistory(); @@ -101,6 +102,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/preferences" component={PreferencesPage} /> <Route exact path="/settings/notifications" component={NotificationsPage} /> <Route exact path="/settings/notification/:id?" component={NotificationPage} /> <Route exact path="/settings/groups" component={GroupsPage} /> |