mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
27 lines
695 B
TypeScript
27 lines
695 B
TypeScript
import * as React from "react"
|
|
|
|
import { ScrollArea } from "@/registry/default/ui/scroll-area"
|
|
import { Separator } from "@/registry/default/ui/separator"
|
|
|
|
const tags = Array.from({ length: 50 }).map(
|
|
(_, i, a) => `v1.2.0-beta.${a.length - i}`
|
|
)
|
|
|
|
export default function ScrollAreaDemo() {
|
|
return (
|
|
<ScrollArea className="h-72 w-48 rounded-md border">
|
|
<div className="p-4">
|
|
<h4 className="mb-4 text-sm font-medium leading-none">Tags</h4>
|
|
{tags.map((tag) => (
|
|
<>
|
|
<div key={tag} className="text-sm">
|
|
{tag}
|
|
</div>
|
|
<Separator className="my-2" />
|
|
</>
|
|
))}
|
|
</div>
|
|
</ScrollArea>
|
|
)
|
|
}
|