"use client"; import { Box, ScrollArea } from "@mantine/core"; export function V2_Children({ children, height, }: { children: React.ReactNode; height?: number; }) { return ( <> {children} {/* */} ); }