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