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