Salle de conférence expérimentale

This commit is contained in:
2020-10-12 21:13:28 +02:00
parent 54e8cf23f7
commit 18dc4135c4
8 changed files with 345 additions and 7 deletions

View File

@ -14,6 +14,7 @@ import { createClient } from '../util/apollo';
import { ApolloProvider } from '@apollo/client';
import { LogoutPage } from './LogoutPage';
import { UnauthorizedPage } from './UnauthorizedPage/UnauthorizedPage';
import { ConferencePage } from './ConferencePage/ConferencePage';
export interface AppProps {
@ -44,6 +45,7 @@ export const App: FunctionComponent<AppProps> = () => {
<Route path="/" exact component={HomePage} />
<Route path="/unauthorized" exact component={UnauthorizedPage} />
<PrivateRoute path="/profile" exact component={ProfilePage} />
<PrivateRoute path="/conference" exact component={ConferencePage} />
<PrivateRoute path="/workgroups/:id" exact component={WorkgroupPage} />
<PrivateRoute path="/decisions/:id" component={DecisionSupportFilePage} />
<PrivateRoute path="/dashboard" exact component={DashboardPage} />