import { Button, Wizard } from "@patternfly/react-core";
import { useTranslation } from "react-i18next";
import React from "react";
import { KerberosSettingsRequired } from "./KerberosSettingsRequired";
import { KerberosSettingsCache } from "./KerberosSettingsCache";
export const UserFederationKerberosWizard = () => {
const { t } = useTranslation("user-federation");
const steps = [
{ name: "Required settings", component: },
{
name: "Cache settings",
component: ,
nextButtonText: "Finish", // TODO: needs to disable until cache policy is valid
},
];
const title = "Add Kerberos user federation provider";
return (
);
};