import React from 'react'; import { Header } from '@/ui/Header'; interface AppHeaderProps { children: React.ReactNode; } /** * AppHeader is the top control bar of the application. * It follows the "Telemetry Workspace" structure. */ export function AppHeader({ children }: AppHeaderProps) { return (
{children}
); }