allows creation of a form outside of the Form component
Example
constmyForm = form({ firstName:text('First Name', {validate:v=>v.length>0, placeholder:'Enter your first name'}), lastName:text('Last Name', {validate:v=>v.length>0, placeholder:'Enter your last name'}), });
Description
allows creation of a form outside of the Form component
Example