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