select-groups.tsx — ui Source File
Architecture documentation for select-groups.tsx, a tsx file in the ui codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 96ad15fd_42de_27f0_25e4_336a886c4a2d["select-groups.tsx"] d7940e38_2a13_bbd2_a77a_58753570dfd5["select"] 96ad15fd_42de_27f0_25e4_336a886c4a2d --> d7940e38_2a13_bbd2_a77a_58753570dfd5 style 96ad15fd_42de_27f0_25e4_336a886c4a2d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {
Select,
SelectContent,
SelectGroup,
SelectItem,
SelectLabel,
SelectSeparator,
SelectTrigger,
SelectValue,
} from "@/examples/radix/ui/select"
export function SelectGroups() {
return (
<Select>
<SelectTrigger className="w-full max-w-48">
<SelectValue placeholder="Select a fruit" />
</SelectTrigger>
<SelectContent>
<SelectGroup>
<SelectLabel>Fruits</SelectLabel>
<SelectItem value="apple">Apple</SelectItem>
<SelectItem value="banana">Banana</SelectItem>
<SelectItem value="blueberry">Blueberry</SelectItem>
</SelectGroup>
<SelectSeparator />
<SelectGroup>
<SelectLabel>Vegetables</SelectLabel>
<SelectItem value="carrot">Carrot</SelectItem>
<SelectItem value="broccoli">Broccoli</SelectItem>
<SelectItem value="spinach">Spinach</SelectItem>
</SelectGroup>
</SelectContent>
</Select>
)
}
Domain
Subdomains
Functions
Dependencies
- select
Source
Frequently Asked Questions
What does select-groups.tsx do?
select-groups.tsx is a source file in the ui codebase, written in tsx. It belongs to the DocumentationAtlas domain, Changelog subdomain.
What functions are defined in select-groups.tsx?
select-groups.tsx defines 1 function(s): SelectGroups.
What does select-groups.tsx depend on?
select-groups.tsx imports 1 module(s): select.
Where is select-groups.tsx in the architecture?
select-groups.tsx is located at apps/v4/examples/radix/select-groups.tsx (domain: DocumentationAtlas, subdomain: Changelog, directory: apps/v4/examples/radix).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free