'use client'; // Workflow has its own layout that bypasses the main sidebar // This gives Langflow the full viewport for proper UX export default function WorkflowLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }