import { Typography, Button, List, Flex, Space } from "antd"; import type { PageProps } from "keycloakify/login/pages/PageProps"; import type { KcContext } from "../KcContext"; import type { I18n } from "../i18n"; const { Title, Text } = Typography; export default function SelectAuthenticator(props: PageProps, I18n>) { const { kcContext, i18n, doUseDefaultCss, Template, classes } = props; const { url, auth, client } = kcContext; const { msg, advancedMsg } = i18n; return ( ); }