import { ResizableHandle, ResizablePanel, ResizablePanelGroup, } from "@/components/ui/resizable"; interface PlaygroundLayoutProps { children: React.ReactNode; problemDescription: React.ReactNode; } export default function PlaygroundLayout({ children, problemDescription, }: PlaygroundLayoutProps) { return ( {problemDescription} {children} ); }