import React, { HTMLProps, ReactNode } from "react"; import { Title } from "@patternfly/react-core"; import "./form-panel.css"; type ScrollPanelProps = HTMLProps & { title: string; scrollId: string; children: ReactNode; }; export const ScrollPanel = (props: ScrollPanelProps) => { const { title, children, scrollId, ...rest } = props; return (
{title} {children}
); };