import { Card, CardBody, CardHeader, CardTitle, Title, } from "@patternfly/react-core"; import { PropsWithChildren } from "react"; import "./form-panel.css"; type FormPanelProps = { title: string; scrollId?: string; className?: string; }; export const FormPanel = ({ title, children, scrollId, className, }: PropsWithChildren) => { return ( {title} {children} ); };