FormPropsinterface

{
	schema: DataSchema<T>;
	data?: PartialData<T> | undefined;
	submit?: ReactNode | undefined;
	onSubmit?: FormCallback<T> | undefined;
	messages?: ImmutableDictionary<string> | string | undefined;
}
PropertyType
.schemaDataSchema<T>
Schema for the form. required
.dataPartialData<T>
Initial data for the form.
.submitReactNode
Content of the submit button.
.onSubmitFormCallback<T>
Optional function called when the form is submitted. Takes the current (validated) value of the form, processes it (possibly asynchronously) and returns any new values to set in the form.
.messagesImmutableDictionary<string>
string
Initial set of messages for the form as either a dictionary or a string with fieldName: style messages.

Props for Form, the schema-driven form wrapper component.