import type { Key } from "react"; import { useGetClassName } from "keycloakify/account/lib/useGetClassName"; import type { PageProps } from "keycloakify/account/pages/PageProps"; import type { KcContext } from "../KcContext"; import { useI18n } from "../i18n"; export default function Log(props: PageProps>) { const { kcContext, doUseDefaultCss, classes, Template } = props; const { getClassName } = useGetClassName({ doUseDefaultCss, classes }); const { log } = kcContext; const { msg } = useI18n({ kcContext }); return ( ); }