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