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