'use client'; import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area'; import { cn } from '@/lib/utils'; export function ScrollArea({ className, children, ...props }: React.ComponentProps) { return ( {children} ); } function ScrollBar({ className, orientation = 'vertical', ...props }: React.ComponentProps) { return ( ); }