import React from 'react'; import { Box } from '@/ui/Box'; interface AppShellProps { children: React.ReactNode; } /** * AppShell is the root container for the entire application layout. * Provides the base structure with cockpit-inspired design. */ export function AppShell({ children }: AppShellProps) { return ( {children} ); }