Gestion des liens profonds sur les tabs dans la page DAD

This commit is contained in:
2020-10-12 15:58:19 +02:00
parent f032e83e71
commit 5649cd2aad
6 changed files with 192 additions and 140 deletions

View File

@ -45,7 +45,7 @@ export const App: FunctionComponent<AppProps> = () => {
<Route path="/unauthorized" exact component={UnauthorizedPage} />
<PrivateRoute path="/profile" exact component={ProfilePage} />
<PrivateRoute path="/workgroups/:id" exact component={WorkgroupPage} />
<PrivateRoute path="/decisions/:id" exact component={DecisionSupportFilePage} />
<PrivateRoute path="/decisions/:id" component={DecisionSupportFilePage} />
<PrivateRoute path="/dashboard" exact component={DashboardPage} />
<PrivateRoute path="/logout" exact component={LogoutPage} />
<Route component={() => <Redirect to="/" />} />