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