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