Files
gridpilot.gg/apps/website/components/app/AppHeader.tsx
2026-01-18 22:55:55 +01:00

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>
);
}