import { Component } from 'react'; import { inject, observer } from 'mobx-react'; import { UserStore } from 'src/stores.types'; import Password from '../../components/auth/Password'; interface IProps { actions: { user: UserStore; }; stores: { user: UserStore; }; }; class PasswordScreen extends Component { render() { const { actions, stores } = this.props; return ( ); } } export default inject('stores', 'actions')(observer(PasswordScreen));