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