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.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/containers/auth/PasswordScreen.tsx b/src/containers/auth/PasswordScreen.tsx
index 864a11fa7..d88549712 100644
--- a/src/containers/auth/PasswordScreen.tsx
+++ b/src/containers/auth/PasswordScreen.tsx
@@ -1,15 +1,15 @@
1import { Component } from 'react'; 1import { Component } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { UserStore } from 'src/stores.types';
3import Password from '../../components/auth/Password'; 4import Password from '../../components/auth/Password';
4import UserStore from '../../stores/UserStore';
5 5
6interface IProps { 6interface IProps {
7 actions: { 7 actions: {
8 user: UserStore, 8 user: UserStore;
9 }, 9 };
10 stores: { 10 stores: {
11 user: UserStore, 11 user: UserStore;
12 } 12 };
13}; 13};
14 14
15class PasswordScreen extends Component<IProps> { 15class PasswordScreen extends Component<IProps> {