import { Outlet } from 'react-router-dom' import { Header } from './Header' import { Sidebar } from './Sidebar' import { BottomTabBar } from './BottomTabBar' export function AppShell() { return (
{/* Top header — full width, always visible */}
{/* Desktop sidebar */} {/* Main content */}
{/* Mobile bottom tab bar */}
) }