import React from 'react'; import { Sidebar } from './Sidebar'; import { TopBar } from './TopBar'; interface LayoutProps { children: React.ReactNode; } export function Layout({ children }: LayoutProps) { return (