forked from Ivasoft/mattermost-mobile
21 lines
545 B
JavaScript
21 lines
545 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {getUsersByUsername} from 'mattermost-redux/selectors/entities/users';
|
|
|
|
import {getTheme} from 'app/selectors/preferences';
|
|
|
|
import AtMention from './at_mention';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
return {
|
|
theme: getTheme(state),
|
|
usersByUsername: getUsersByUsername(state),
|
|
...ownProps
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(AtMention);
|