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