FieldGroupExample() — ui Function Reference
Architecture documentation for the FieldGroupExample() function in field-group.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD bf06a211_a543_2c38_1459_619ede61b85a["FieldGroupExample()"] fa86391a_6d0f_5ff7_ab92_83c474ed85fc["field-group.tsx"] bf06a211_a543_2c38_1459_619ede61b85a -->|defined in| fa86391a_6d0f_5ff7_ab92_83c474ed85fc style bf06a211_a543_2c38_1459_619ede61b85a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/examples/base/field-group.tsx lines 11–53
export default function FieldGroupExample() {
return (
<FieldGroup className="w-full max-w-xs">
<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>
)
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does FieldGroupExample() do?
FieldGroupExample() is a function in the ui codebase, defined in apps/v4/examples/base/field-group.tsx.
Where is FieldGroupExample() defined?
FieldGroupExample() is defined in apps/v4/examples/base/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