all repos — caroster @ b1539af58f4a38c2c5c600d2ccbe83f8f4532cf8

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