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