import { Suspense, lazy } from "react"; import type { PageProps } from "keycloakify/account"; import type { KcContext } from "./KcContext"; import { useI18n } from "./i18n"; import Template from "keycloakify/account/Template"; const Fallback = lazy(() => import("keycloakify/account/Fallback")); const classes = {} satisfies PageProps["classes"]; export default function KcApp(props: { kcContext: KcContext }) { const { kcContext } = props; const i18n = useI18n({ kcContext }); if (i18n === null) { return null; } return ( {(() => { switch (kcContext.pageId) { default: return ( ); } })()} ); }