summaryrefslogtreecommitdiffstats
path: root/webapp/components/popover_list_members/index.js
blob: 3e9087e0d2cc2b826b240a3728441e4754bc0d88 (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
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import {getProfilesInChannel} from 'mattermost-redux/actions/users';

import PopoverListMembers from './popover_list_members.jsx';

function mapStateToProps(state, ownProps) {
    return {
        ...ownProps
    };
}

function mapDispatchToProps(dispatch) {
    return {
        actions: bindActionCreators({
            getProfilesInChannel
        }, dispatch)
    };
}

export default connect(mapStateToProps, mapDispatchToProps)(PopoverListMembers);