accordion-multiple.tsx — ui Source File
Architecture documentation for accordion-multiple.tsx, a tsx file in the ui codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 41ee1c62_2fed_841e_e9dc_8f05c991896a["accordion-multiple.tsx"] d1739492_eb83_6264_2d6e_6f7bc15d1caf["accordion"] 41ee1c62_2fed_841e_e9dc_8f05c991896a --> d1739492_eb83_6264_2d6e_6f7bc15d1caf style 41ee1c62_2fed_841e_e9dc_8f05c991896a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
} from "@/examples/radix/ui/accordion"
const items = [
{
value: "notifications",
trigger: "Notification Settings",
content:
"Manage how you receive notifications. You can enable email alerts for updates or push notifications for mobile devices.",
},
{
value: "privacy",
trigger: "Privacy & Security",
content:
"Control your privacy settings and security preferences. Enable two-factor authentication, manage connected devices, review active sessions, and configure data sharing preferences. You can also download your data or delete your account.",
},
{
value: "billing",
trigger: "Billing & Subscription",
content:
"View your current plan, payment history, and upcoming invoices. Update your payment method, change your subscription tier, or cancel your subscription.",
},
]
export function AccordionMultiple() {
return (
<Accordion
type="multiple"
className="max-w-lg"
defaultValue={["notifications"]}
>
{items.map((item) => (
<AccordionItem key={item.value} value={item.value}>
<AccordionTrigger>{item.trigger}</AccordionTrigger>
<AccordionContent>{item.content}</AccordionContent>
</AccordionItem>
))}
</Accordion>
)
}
Domain
Subdomains
Functions
Dependencies
- accordion
Source
Frequently Asked Questions
What does accordion-multiple.tsx do?
accordion-multiple.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 accordion-multiple.tsx?
accordion-multiple.tsx defines 1 function(s): AccordionMultiple.
What does accordion-multiple.tsx depend on?
accordion-multiple.tsx imports 1 module(s): accordion.
Where is accordion-multiple.tsx in the architecture?
accordion-multiple.tsx is located at apps/v4/examples/radix/accordion-multiple.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