import React, { ReactElement } from "react"; import { Form, Field } from "react-final-form"; import { hostNameValidator } from "../../../shared/utils/validator.utils"; import { isEmpty } from "lodash"; export const ConnectionForm = ({ initialData, submitHandler, formHeading, }): ReactElement => { return ( <>
)} /> > ); };