aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/PasswordScreen.tsx
blob: c7539f21e7ac3f71d0fb5dd35052571d638ff8eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { Component, ReactElement } from 'react';
import { inject, observer } from 'mobx-react';
import { StoresProps } from '../../@types/ferdium-components.types';
import Password from '../../components/auth/Password';

class PasswordScreen extends Component<StoresProps> {
  render(): ReactElement {
    const { actions, stores } = this.props;

    return (
      <Password
        onSubmit={actions.user.retrievePassword}
        isSubmitting={stores.user.passwordRequest.isExecuting}
        signupRoute={stores.user.signupRoute}
        loginRoute={stores.user.loginRoute}
        status={stores.user.actionStatus}
      />
    );
  }
}

export default inject('stores', 'actions')(observer(PasswordScreen));