19 lines
360 B
TypeScript
19 lines
360 B
TypeScript
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 (
|
|
<Header>
|
|
{children}
|
|
</Header>
|
|
);
|
|
}
|