import type { Locale } from '../../i18n' type Props = { subtitle: string title: string languageLabel: string locale: Locale saving: boolean onChange: (locale: Locale) => void } export function TopBar(props: Props) { return (

{props.subtitle}

{props.title}

) }