import { Wizard } from "@patternfly/react-core"; import { useTranslation } from "react-i18next"; import React from "react"; import { KerberosSettingsRequired } from "./kerberos/KerberosSettingsRequired"; import { KerberosSettingsCache } from "./kerberos/KerberosSettingsCache"; export const UserFederationKerberosWizard = () => { const { t } = useTranslation("user-federation"); const helpText = useTranslation("user-federation-help").t; const steps = [ { name: t("requiredSettings"), component: ( ), }, { name: t("cacheSettings"), component: ( ), nextButtonText: t("common:finish"), // TODO: needs to disable until cache policy is valid }, ]; return ( ); };