import { PageSection, Title } from "@patternfly/react-core"; import { useTranslation } from "react-i18next"; import React from "react"; import { KerberosSettingsRequired } from "./KerberosSettingsRequired"; import { KerberosSettingsCache } from "./KerberosSettingsCache"; export const UserFederationKerberosSettings = () => { const { t } = useTranslation("user-federation"); return ( <> {/* Required settings */} {t("requiredSettings")} {/* Cache settings */} {t("cacheSettings")} ); };