Reference
createForm
Creates a reactive form API from initial values, validators, and optional schema validation.
Signature
function createForm<TValues>(options: CreateFormOptionsWithoutSchema<TValues>): FormApi<TValues, TValues>
function createForm<TValues, TSubmitValues>(options: CreateFormOptionsWithSchema<TValues, TSubmitValues>): FormApi<TValues, TSubmitValues>