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