all repos — caroster @ eacae3b5757ee863358e7e3e52a5b6126422d67f

[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;