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