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