import React from "react"; import { Title } from "@patternfly/react-core"; import "./form-panel.css"; interface FormPanelProps extends React.HTMLProps { title: string; scrollId: string; } export const FormPanel = (props: FormPanelProps) => { const { title, children, scrollId, ...rest } = props; return (
{title} {children}
); };