import { FormGroup } from "@patternfly/react-core"; import { PropsWithChildren } from "react"; import { useTranslation } from "react-i18next"; import { HelpItem } from "ui-shared"; export type FieldProps = { label: string; field: string; isReadOnly?: boolean }; export type FormGroupFieldProps = { label: string }; export const FormGroupField = ({ label, children, }: PropsWithChildren) => { const { t } = useTranslation(); return ( } > {children} ); };