{children}
import type { ReactNode } from 'react'; import { Header } from './Header'; import { Sidebar } from './Sidebar'; import { useUIStore } from '@/stores/ui'; import { cn } from '@/lib/utils'; interface LayoutProps { children: ReactNode; } export function Layout({ children }: LayoutProps) { const { sidebarOpen } = useUIStore(); return (