UNPKG

grommet

Version:

focus on the essential experience

14 lines (10 loc) 328 B
import * as React from "react"; export interface FormProps { errors?: {}; messages?: {invalid?: string,required?: string}; onChange?: ((...args: any[]) => any); onSubmit?: ((...args: any[]) => any); value?: {}; } declare const Form: React.ComponentClass<FormProps & JSX.IntrinsicElements['form']>; export { Form };