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