import type { ReactNode } from 'react'; interface AppShellProps { sidebar: ReactNode; content: ReactNode; overlay?: ReactNode; } export function AppShell({ sidebar, content, overlay }: AppShellProps) { return (
{/* Full-width drag region matching the title bar overlay height */}
{content}
{overlay}
); }