import React from "react"; import { assert } from "../tools/assert"; import type { KcContextBase } from "../kcContext"; import type { PageProps } from "../KcProps"; import type { I18nBase } from "../i18n"; export default function Info(props: PageProps) { const { kcContext, i18n, doFetchDefaultThemeResources = true, Template, ...kcProps } = props; const { msgStr, msg } = i18n; assert(kcContext.message !== undefined); const { messageHeader, message, requiredActions, skipLink, pageRedirectUri, actionUri, client } = kcContext; return (