import { clsx } from "keycloakify/tools/clsx"; 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 Sessions(props: PageProps>) { const { kcContext, doUseDefaultCss, Template, classes } = props; const { getClassName } = useGetClassName({ doUseDefaultCss, classes }); const { url, stateChecker, sessions } = kcContext; const { msg } = useI18n({ kcContext }); return ( ); }