import React, { ReactNode, FormEventHandler, forwardRef } from 'react'; export interface FormProps { children: ReactNode; onSubmit?: FormEventHandler; noValidate?: boolean; className?: string; } export const Form = forwardRef(({ children, onSubmit, noValidate = true, className }, ref) => { return (
{children}
); }); Form.displayName = 'Form';