aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/PasswordScreen.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/auth/PasswordScreen.js')
-rw-r--r--src/containers/auth/PasswordScreen.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/containers/auth/PasswordScreen.js b/src/containers/auth/PasswordScreen.js
index 9c6732f1a..47f6dfd01 100644
--- a/src/containers/auth/PasswordScreen.js
+++ b/src/containers/auth/PasswordScreen.js
@@ -4,7 +4,9 @@ import { inject, observer } from 'mobx-react';
4import Password from '../../components/auth/Password'; 4import Password from '../../components/auth/Password';
5import UserStore from '../../stores/UserStore'; 5import UserStore from '../../stores/UserStore';
6 6
7export default @inject('stores', 'actions') @observer class PasswordScreen extends Component { 7@inject('stores', 'actions')
8@observer
9class PasswordScreen extends Component {
8 render() { 10 render() {
9 const { actions, stores } = this.props; 11 const { actions, stores } = this.props;
10 12