import { FormGroup, Switch, TextInput } from "@patternfly/react-core"; import { useTranslation } from "react-i18next"; import React from "react"; import { HelpItem } from "../components/help-enabler/HelpItem"; import { useForm, Controller } from "react-hook-form"; import ComponentRepresentation from "keycloak-admin/lib/defs/componentRepresentation"; import { FormAccess } from "../components/form-access/FormAccess"; export const LdapSettingsSynchronization = () => { const { t } = useTranslation("user-federation"); const helpText = useTranslation("user-federation-help").t; const { register, control } = useForm(); return ( <> {/* Synchronization settings */} } fieldId="kc-import-users" hasNoPaddingTop > ( )} > } fieldId="kc-batch-size" > } fieldId="kc-periodic-full-sync" hasNoPaddingTop > ( )} > } fieldId="kc-periodic-changed-users-sync" hasNoPaddingTop > ( )} > ); };