summaryrefslogtreecommitdiffstats
path: root/webapp/components/team_sidebar/index.js
blob: d130555fde9df92a7933ee70d8afb877e25f8af4 (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 {getTeams} from 'mattermost-redux/actions/teams';

import TeamSidebar from './team_sidebar_controller.jsx';

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

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

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