import type { ReactNode } from 'react' export interface FormGroupProps { title: string subtitle: ReactNode children?: ReactNode } export const FormGroup = (props: FormGroupProps) => { const { title, subtitle, children } = props return (
{children}
) }