import * as React from 'react'; import { cn } from '@/lib/utils'; // Minimal scroll-area wrapper — Radix has a fancier version, but native // overflow with our styled scrollbar is good enough for the logbook table. export interface ScrollAreaProps extends React.HTMLAttributes {} export const ScrollArea = React.forwardRef( ({ className, children, ...props }, ref) => (
{children}
), ); ScrollArea.displayName = 'ScrollArea';