Display the list of accounts

This commit is contained in:
2025-04-08 22:30:53 +02:00
parent ad4c0d2885
commit 8defd9ad17
3 changed files with 72 additions and 1 deletions

View File

@ -14,6 +14,7 @@ import { OIDCCbRoute } from "./routes/auth/OIDCCbRoute";
import { BaseAuthenticatedPage } from "./widgets/BaseAuthenticatedPage";
import { BaseLoginPage } from "./widgets/BaseLoginPage";
import { TokensRoute } from "./routes/TokensRoute";
import { AccountsRoute } from "./routes/AccountsRoute";
interface AuthContext {
signedIn: boolean;
@ -39,6 +40,7 @@ export function App() {
<Route path="*" element={<BaseAuthenticatedPage />}>
<Route path="" element={<HomeRoute />} />
<Route path="tokens" element={<TokensRoute />} />
<Route path="accounts" element={<AccountsRoute />} />
<Route path="*" element={<NotFoundRoute />} />
</Route>