UNPKG

@guardian/threads

Version:
9 lines (8 loc) 257 B
import { FormEventHandler, ReactNode } from 'react'; declare type FormProps = { onSubmit: FormEventHandler; title?: string; children: ReactNode; }; export declare const Form: ({ onSubmit, title, children }: FormProps) => JSX.Element; export {};