SelectLargeList() — ui Function Reference
Architecture documentation for the SelectLargeList() function in select-example.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 90ebaba9_ad2a_be3b_3f5e_ec7d682986bc["SelectLargeList()"] 45dbd80e_4241_7e94_2ac4_8c9f125488aa["select-example.tsx"] 90ebaba9_ad2a_be3b_3f5e_ec7d682986bc -->|defined in| 45dbd80e_4241_7e94_2ac4_8c9f125488aa style 90ebaba9_ad2a_be3b_3f5e_ec7d682986bc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/bases/radix/examples/select-example.tsx lines 230–249
function SelectLargeList() {
return (
<Example title="Large List">
<Select>
<SelectTrigger>
<SelectValue placeholder="Select an item" />
</SelectTrigger>
<SelectContent>
<SelectGroup>
{Array.from({ length: 100 }).map((_, i) => (
<SelectItem key={i} value={`item-${i}`}>
Item {i}
</SelectItem>
))}
</SelectGroup>
</SelectContent>
</Select>
</Example>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does SelectLargeList() do?
SelectLargeList() is a function in the ui codebase, defined in apps/v4/registry/bases/radix/examples/select-example.tsx.
Where is SelectLargeList() defined?
SelectLargeList() is defined in apps/v4/registry/bases/radix/examples/select-example.tsx at line 230.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free