import { useTranslation } from 'react-i18next'; import { Window, SegmentedControl } from '@olly/modern-sk'; import { SUPPORTED_LANGUAGES, setLanguage } from '../../i18n'; export function SettingsPage() { const { t, i18n } = useTranslation(); return (
Language ({ value: l.code, label: l.label }))} />
); }