all repos — caroster @ 6ac8ff7d2b70426eb2a3b256a156c7937246b2bb

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