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