summaryrefslogtreecommitdiffstats
path: root/webapp/components/channel_members_dropdown/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/channel_members_dropdown/index.js')
-rw-r--r--webapp/components/channel_members_dropdown/index.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/webapp/components/channel_members_dropdown/index.js b/webapp/components/channel_members_dropdown/index.js
new file mode 100644
index 000000000..11a626e46
--- /dev/null
+++ b/webapp/components/channel_members_dropdown/index.js
@@ -0,0 +1,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 {getChannelStats} from 'mattermost-redux/actions/channels';
+
+import ChannelMembersDropdown from './channel_members_dropdown.jsx';
+
+function mapStateToProps(state, ownProps) {
+ return {
+ ...ownProps
+ };
+}
+
+function mapDispatchToProps(dispatch) {
+ return {
+ actions: bindActionCreators({
+ getChannelStats
+ }, dispatch)
+ };
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(ChannelMembersDropdown);