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