import { useTranslation } from "react-i18next"; import type { Control } from "react-hook-form"; import { ActionGroup, Button, FormGroup } from "@patternfly/react-core"; import { FormAccess } from "../../components/form-access/FormAccess"; import { HelpItem } from "../../components/help-enabler/HelpItem"; import { KeycloakTextInput } from "../../components/keycloak-text-input/KeycloakTextInput"; import { ApplicationUrls } from "./ApplicationUrls"; type FineGrainSamlEndpointConfigProps = { control: Control>; save: () => void; reset: () => void; }; export const FineGrainSamlEndpointConfig = ({ control: { register }, save, reset, }: FineGrainSamlEndpointConfigProps) => { const { t } = useTranslation("clients"); return ( } > } > } > } > } > } > } > ); };