1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950import { Form, FormError, FormInput, FormLabel, FormReset, FormSubmit, useFormState, } from "ariakit/form"; import "./style.css"; export default function Example() { const form = useFormState({ defaultValues: { name: "", email: "" } }); form.useSubmit(async () => { alert(JSON.stringify(form.values)); }); return ( <Form state={form} aria-labelledby="add-new-participant" className="wrapper" > <h2 id="add-new-participant" className="heading"> Add new participant </h2> <div className="field"> <FormLabel name={form.names.name}>Name</FormLabel> <FormInput name={form.names.name} required placeholder="John Doe" /> <FormError name={form.names.name} className="error" /> </div> <div className="field"> <FormLabel name={form.names.email}>Email</FormLabel> <FormInput type="email" name={form.names.email} required placeholder="johndoe@example.com" /> <FormError name={form.names.email} className="error" /> </div> <div className="buttons"> <FormReset className="button secondary reset">Reset</FormReset> <FormSubmit className="button">Add</FormSubmit> </div> </Form> ); }