Auto Form
---import { AutoForm } from "@/components/ui/auto-form"import { Button } from "@/components/ui/button"---
<AutoForm fields={[ { label: "Name", type: "text" }, { label: "Email", type: "email" }, { label: "Message", type: "textarea" }, ]} submit="Send"/>Installation
Section titled “Installation”To install the form component, run the following command:
npx shadcn@latest add @fulldev/auto-formimport { AutoForm } from "@/components/ui/auto-form"<AutoForm fields={[{ label: "Name", type: "text" }]} submit="Submit" />