aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/PasswordScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/auth/PasswordScreen.tsx')
-rw-r--r--src/containers/auth/PasswordScreen.tsx17
1 files changed, 4 insertions, 13 deletions
diff --git a/src/containers/auth/PasswordScreen.tsx b/src/containers/auth/PasswordScreen.tsx
index d88549712..3176e5a8b 100644
--- a/src/containers/auth/PasswordScreen.tsx
+++ b/src/containers/auth/PasswordScreen.tsx
@@ -1,19 +1,10 @@
1import { Component } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { UserStore } from 'src/stores.types'; 3import { DefaultProps } from 'src/@types/ferdium-components.types';
4import Password from '../../components/auth/Password'; 4import Password from '../../components/auth/Password';
5 5
6interface IProps { 6class PasswordScreen extends Component<DefaultProps> {
7 actions: { 7 render(): ReactElement {
8 user: UserStore;
9 };
10 stores: {
11 user: UserStore;
12 };
13};
14
15class PasswordScreen extends Component<IProps> {
16 render() {
17 const { actions, stores } = this.props; 8 const { actions, stores } = this.props;
18 9
19 return ( 10 return (