import { Space, Typography } from 'antd'; import React from 'react'; import { useTranslation } from 'react-i18next'; import Password from './Password'; import UpdateName from './UpdateName'; function MySettings(): JSX.Element { const { t } = useTranslation(['routes']); return ( {t('my_settings')} ); } export default MySettings;