import { PageSection } from "@patternfly/react-core"; import { useTranslation } from "react-i18next"; import React from "react"; import { ScrollForm } from "../components/scroll-form/ScrollForm"; import { LdapSettingsAdvanced } from "./LdapSettingsAdvanced"; import { LdapSettingsKerberosIntegration } from "./LdapSettingsKerberosIntegration"; import { LdapSettingsCache } from "./LdapSettingsCache"; import { LdapSettingsSynchronization } from "./LdapSettingsSynchronization"; import { LdapSettingsGeneral } from "./LdapSettingsGeneral"; import { LdapSettingsConnection } from "./LdapSettingsConnection"; import { LdapSettingsSearching } from "./LdapSettingsSearching"; export const UserFederationLdapSettingsTab = () => { const { t } = useTranslation("user-federation"); return ( <> {/* General settings */} {/* Connection settings */} {/* Searching and updating settings */} {/* Synchronization settings */} {/* Kerberos integration */} {/* Cache settings */} {/* Advanced settings */} ); };