The component can be imported via:
The Form component is used to handle submitting forms. It is a drop-in replacement for the native <form> element, but with additional features.
To disable a form, you can pass the isDisabled prop to the Form component.
By default, autoLoading is true. This means the form will disable other submissions and edits while the form is submitting. You can disable this behavior by passing autoLoading={false} to the Form component.
If true, the form will automatically lock the fields when the onSubmit function is called and it returns a promise.
Disables the form and all its fields.
The function to call when the form is submitted