import { BouncyAccordion } from "@/components/ui/bouncy-accordion"const items = [
{
id: "shipping",
title: "How quickly can I ship?",
description: "Copy the component, add your content, and customize its slots.",
},
{
id: "controlled",
title: "Can I control the open row?",
description: "Yes. Pass value and onValueChange.",
},
]
export function Demo() {
return <BouncyAccordion items={items} defaultValue="shipping" />
}