import type { ReactNode } from 'react'; import { Sidebar } from './sidebar'; import { Topbar } from './topbar'; interface AppShellProps { children: ReactNode; } export function AppShell({ children }: AppShellProps): React.ReactElement { return (
{children}
); }