mattermost-mobile/app/screens/sso/index.js
CJ b43638b728
MM-18935 (#3346)
Added SafeAreaView padding for the SSO screen
2019-10-12 01:34:28 -04:00

33 lines
976 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 {handleSuccessfulLogin, scheduleExpiredNotification} from 'app/actions/views/login';
import {getTheme} from 'mattermost-redux/selectors/entities/preferences';
import {isLandscape} from 'app/selectors/device';
import {setStoreFromLocalData} from 'mattermost-redux/actions/general';
import SSO from './sso';
function mapStateToProps(state) {
return {
...state.views.selectServer,
theme: getTheme(state),
isLandscape: isLandscape(state),
};
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators({
scheduleExpiredNotification,
handleSuccessfulLogin,
setStoreFromLocalData,
}, dispatch),
};
}
export default connect(mapStateToProps, mapDispatchToProps)(SSO);