import type { ReactNode } from "react"; interface Props { /** Shown next to the title when the mouse is reachable but the firmware is not. */ status?: ReactNode; } export function AppHeader({ status }: Props) { return (
Musik Delphin
{status}
); }