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