import type { ReactNode } from 'react'; interface AppShellProps { sidebar: ReactNode; content: ReactNode; } export function AppShell({ sidebar, content }: AppShellProps) { return (