ProfileForm() — ui Function Reference
Architecture documentation for the ProfileForm() function in drawer-dialog.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD e84ba565_5ff9_5383_d0d8_675d4cf6e3d9["ProfileForm()"] 4628e010_da76_cf34_a78b_5c0b4ab8e1c2["drawer-dialog.tsx"] e84ba565_5ff9_5383_d0d8_675d4cf6e3d9 -->|defined in| 4628e010_da76_cf34_a78b_5c0b4ab8e1c2 style e84ba565_5ff9_5383_d0d8_675d4cf6e3d9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/examples/base/drawer-dialog.tsx lines 76–90
function ProfileForm({ className }: React.ComponentProps<"form">) {
return (
<form className={cn("grid items-start gap-6", className)}>
<div className="grid gap-3">
<Label htmlFor="email">Email</Label>
<Input type="email" id="email" defaultValue="shadcn@example.com" />
</div>
<div className="grid gap-3">
<Label htmlFor="username">Username</Label>
<Input id="username" defaultValue="@shadcn" />
</div>
<Button type="submit">Save changes</Button>
</form>
)
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does ProfileForm() do?
ProfileForm() is a function in the ui codebase, defined in apps/v4/examples/base/drawer-dialog.tsx.
Where is ProfileForm() defined?
ProfileForm() is defined in apps/v4/examples/base/drawer-dialog.tsx at line 76.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free