Components
A scrollable container that lets users scroll through a long list of items, such as a user or contacts list, within a fixed height.
Loading preview...
import ScrollArea3 from "@/components/ui/scroll-area3";
export default function Default() {
return (
<div className="flex items-center justify-center p-6">
<ScrollArea3 />
</div>
);
}