blob: e7b5910a2feef9253c1b7343d4a6bc5a6beeeeb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import {getUser} from 'mattermost-redux/actions/users';
import {getTeamStats} from 'mattermost-redux/actions/teams';
import {getChannelStats} from 'mattermost-redux/actions/channels';
import TeamMembersDropdown from './team_members_dropdown.jsx';
function mapStateToProps(state, ownProps) {
return {
...ownProps
};
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators({
getUser,
getTeamStats,
getChannelStats
}, dispatch)
};
}
export default connect(mapStateToProps, mapDispatchToProps)(TeamMembersDropdown);
|