interface TitleBarProps { title?: string; } export function TitleBar({ title }: TitleBarProps) { return
{title}
}