FieldGroupExample() — ui Function Reference
Architecture documentation for the FieldGroupExample() function in field-group.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 2ae15ab0_116f_3185_354f_78aef5da3712["FieldGroupExample()"] 41dfebb5_8603_b794_19e3_6e684d9be994["field-group.tsx"] 2ae15ab0_116f_3185_354f_78aef5da3712 -->|defined in| 41dfebb5_8603_b794_19e3_6e684d9be994 style 2ae15ab0_116f_3185_354f_78aef5da3712 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/new-york-v4/examples/field-group.tsx lines 11–55
export default function FieldGroupExample() {
return (
<div className="w-full max-w-md">
<FieldGroup>
<FieldSet>
<FieldLabel>Responses</FieldLabel>
<FieldDescription>
Get notified when ChatGPT responds to requests that take time, like
research or image generation.
</FieldDescription>
<FieldGroup data-slot="checkbox-group">
<Field orientation="horizontal">
<Checkbox id="push" defaultChecked disabled />
<FieldLabel htmlFor="push" className="font-normal">
Push notifications
</FieldLabel>
</Field>
</FieldGroup>
</FieldSet>
<FieldSeparator />
<FieldSet>
<FieldLabel>Tasks</FieldLabel>
<FieldDescription>
Get notified when tasks you've created have updates.{" "}
<a href="#">Manage tasks</a>
</FieldDescription>
<FieldGroup data-slot="checkbox-group">
<Field orientation="horizontal">
<Checkbox id="push-tasks" />
<FieldLabel htmlFor="push-tasks" className="font-normal">
Push notifications
</FieldLabel>
</Field>
<Field orientation="horizontal">
<Checkbox id="email-tasks" />
<FieldLabel htmlFor="email-tasks" className="font-normal">
Email notifications
</FieldLabel>
</Field>
</FieldGroup>
</FieldSet>
</FieldGroup>
</div>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does FieldGroupExample() do?
FieldGroupExample() is a function in the ui codebase, defined in apps/v4/registry/new-york-v4/examples/field-group.tsx.
Where is FieldGroupExample() defined?
FieldGroupExample() is defined in apps/v4/registry/new-york-v4/examples/field-group.tsx at line 11.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free