import React from "react"; import { FormGroup, Switch, Checkbox, Grid, GridItem, Form, } from "@patternfly/react-core"; import { UseFormMethods, Controller } from "react-hook-form"; import { useTranslation } from "react-i18next"; type Step2Props = { form: UseFormMethods; }; export const Step2 = ({ form }: Step2Props) => { const { t } = useTranslation("clients"); return (
( )} /> ( )} /> ( )} /> ( )} /> ( )} /> ( )} />
); };