import { Scroller } from "@/registry/default/ui/scroller";
export default function ScrollerDemo() {
return (
<Scroller className="flex h-80 w-full flex-col gap-2.5 p-4">
{Array.from({ length: 100 }).map((_, index) => (
<div
key={index}
className="flex h-40 flex-col rounded-md bg-accent p-4"
>
<div className="font-medium text-lg">Card {index + 1}</div>
<span className="text-muted-foreground text-sm">
This is a card description.
</span>
</div>
))}
</Scroller>
);
}
npx shadcn@latest add @diceui/scroller-demoimport { ScrollerDemo } from "@/components/scroller-demo"<ScrollerDemo />