No fields added yet. Click on "Add Field" to get started.
FORM VIEW
No fields added yet. Add some fields from the Fields section to see them here.
schema.ts
1import{ z }from"zod";23exportconst formSchema = z.object({4// Add fields to see the generated schema5});67exporttypeFormData= z.infer<typeof formSchema>;