import { inject, observer } from 'mobx-react'; import { Component, type ReactElement } from 'react'; import type { 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));