{children}
import React from 'react'; import { ChevronRight } from 'lucide-react'; import { Sidebar } from './Sidebar'; import { Header } from './Header'; interface LayoutProps { children: React.ReactNode; currentView: string; setCurrentView: (view: string) => void; } export function Layout({ children, currentView, setCurrentView }: LayoutProps) { return (