import { clsx } from "keycloakify/tools/clsx"; import { useGetClassName } from "keycloakify/login/lib/useGetClassName"; import type { PageProps } from "keycloakify/login/pages/PageProps"; import type { KcContext } from "../KcContext"; import type { I18n } from "../i18n"; export default function SelectAuthenticator(props: PageProps, I18n>) { const { kcContext, i18n, doUseDefaultCss, Template, classes } = props; const { url, auth } = kcContext; const { getClassName } = useGetClassName({ doUseDefaultCss, classes }); const { msg } = i18n; return ( ); }