Parameters
A form schema is how you tell Attio about the shape and validation rules of your form data.
These values must match the type defined by your form schema.
Returns
an object containing:Functions
An imperative function to update a particular value in the form.
An imperative function to submit the form. It will cause validation to run, and if the validation passes it will call the
onSubmit
handler that you have passed to <Form/>
.Typically you won’t be using this, but will rather render a
<SubmitButton />