all repos — caroster @ 6ed452d52636885944d0c68e07d2bde6f7a77a21

[Octree] Group carpool to your event https://caroster.io

frontend/pages/auth/lost-password.tsx (view raw)

 1import {useTranslation} from 'react-i18next';
 2import Layout from '../../layouts/Centered';
 3import LostPasswordContainer from '../../containers/LostPassword';
 4
 5const LostPassword = () => {
 6  const {t} = useTranslation();
 7
 8  return (
 9    <Layout menuTitle={t('lost_password.title')} displayMenu={false}>
10      <LostPasswordContainer />
11    </Layout>
12  );
13};
14
15export default LostPassword;