import React from 'react'; interface ControlBarProps { children: React.ReactNode; className?: string; } /** * ControlBar is the top-level header of the "Telemetry Workspace". * It provides global controls, navigation, and status information. * Aligned with "Precision Racing Minimal" theme. */ export function ControlBar({ children, className = '' }: ControlBarProps) { return (
{children}
); }