import { Component, ReactElement } from 'react'; import { inject, observer } from 'mobx-react'; import { StoresProps } from '../../@types/ferdium-components.types'; import Password from '../../components/auth/Password'; class PasswordScreen extends Component { render(): ReactElement { const { actions, stores } = this.props; return ( ); } } export default inject('stores', 'actions')(observer(PasswordScreen));