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 type { I18n } from "../i18n"; export default function Sessions(props: PageProps, I18n>) { const { kcContext, i18n, doUseDefaultCss, Template, classes } = props; const { getClassName } = useGetClassName({ doUseDefaultCss, classes }); const { url, stateChecker, sessions } = kcContext; const { msg } = i18n; return ( ); }