ProfileForm() — supabase Function Reference
Architecture documentation for the ProfileForm() function in drawer-dialog.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/design-system/registry/default/example/drawer-dialog.tsx lines 73–87
function ProfileForm({ className }: React.ComponentProps<'form'>) {
return (
<form className={cn('grid items-start gap-4', className)}>
<div className="grid gap-2">
<Label_Shadcn_ htmlFor="email">Email</Label_Shadcn_>
<Input_Shadcn_ type="email" id="email" defaultValue="shadcn@example.com" />
</div>
<div className="grid gap-2">
<Label_Shadcn_ htmlFor="username">Username</Label_Shadcn_>
<Input_Shadcn_ id="username" defaultValue="@shadcn" />
</div>
<Button htmlType="submit">Save changes</Button>
</form>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free