import { Component } from 'react'; import { inject, observer } from 'mobx-react'; import Password from '../../components/auth/Password'; import UserStore from '../../stores/UserStore'; 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));