mattermost-mobile/app/screens/mfa/index.js
Elias Nahum 7bb162b07a
MM-22292 Don't use redux to store username and password (#4072)
* MM-22292 Don't use redux to store username and password

* Set login and password MFA props
2020-03-26 23:57:58 -03:00

19 lines
463 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {login} from 'app/actions/views/user';
import Mfa from './mfa';
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators({
login,
}, dispatch),
};
}
export default connect(null, mapDispatchToProps)(Mfa);