Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/forms / build / dist / new-forms / forms / ObserverForm.d.ts
Size: Mime:
import * as React from 'react';
import { ValidationStrategy } from '../strategies';
import { FormProps, FormRenderProps } from './typings';
export declare class ObserverForm extends React.Component<FormProps> {
    static defaultProps: {
        renderForm: (props: FormRenderProps) => JSX.Element;
        renderButtonGroup: (props: FormRenderProps) => JSX.Element;
    };
    static contextType: React.Context<ValidationStrategy>;
    context: ValidationStrategy;
    handleSubmit: (event: React.FormEvent<any>) => void;
    render(): JSX.Element;
}