/* eslint-disable */ // @ts-nocheck import { Card, CardBody, CardHeader, CardTitle } from "../../@patternfly/react-core"; import { PropsWithChildren, useId } from "react"; import { FormTitle } from "./FormTitle"; type FormPanelProps = { title: string; scrollId?: string; className?: string; }; export const FormPanel = ({ title, children, scrollId, className, }: PropsWithChildren) => { const id = useId(); return ( {children} ); };