import type { ReactNode } from "react"; import { cn } from "@/lib/utils"; interface WorkspacePanelProps { children: ReactNode; className?: string; viewportClassName?: string; contentClassName?: string; } /** * Full workspace area to the right of the left rail/sidebar. * Use this when a route should own the whole workspace instead of rendering * inside the normal TabBar/Header/main/right-panel chrome. */ export function WorkspacePanel({ children, className, viewportClassName, contentClassName, }: WorkspacePanelProps) { return (
{children}
); }