import {useTranslation} from 'react-i18next'; import Layout from '../../layouts/Centered'; import LostPasswordContainer from '../../containers/LostPassword'; const LostPassword = () => { const {t} = useTranslation(); return ( ); }; export default LostPassword;