Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/netzo/components/blocks/form/form.tsx>Form

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
function Form
import { Form } from "https://deno.land/x/netzo@0.4.40/components/blocks/form/form.tsx";

Parameters

unnamed 0: { formSchema: SchemaType; values?: Partial<z.infer<SchemaType>>; onValuesChange?: (values: Partial<z.infer<SchemaType>>) => void; onParsedValuesChange?: (values: Partial<z.infer<SchemaType>>) => void; onSubmit?: (values: z.infer<SchemaType>) => void; fieldConfig?: FieldConfig<z.infer<SchemaType>>; children?: ComponentChildren; className?: string; }