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"; import ComponentRepresentation from "keycloak-admin/lib/defs/componentRepresentation"; import { useForm } from "react-hook-form"; export const UserFederationKerberosWizard = () => { const { t } = useTranslation("user-federation"); const form = useForm({ mode: "onChange" }); const steps = [ { name: t("requiredSettings"), component: ( ), }, { name: t("cacheSettings"), component: ( ), nextButtonText: t("common:finish"), // TODO: needs to disable until cache policy is valid }, ]; return ( ); };