* PLT-7567: Integration of team icons in channel drawer teams, switch team button, team selection, os share extenions * PLT-7567: adopt updated eslint changes * PLT-7567: Component for team icon display, refactoring * PLT-7567: removed redundant styles * PLT-7567: redux connected component for team icon, error handling
18 lines
527 B
JavaScript
18 lines
527 B
JavaScript
// Copyright (c) 2018-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {getTeam} from 'mattermost-redux/selectors/entities/teams';
|
|
import {getTheme} from 'mattermost-redux/selectors/entities/preferences';
|
|
|
|
import TeamIcon from './team_icon';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
return {
|
|
team: getTeam(state, ownProps.teamId),
|
|
theme: getTheme(state),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(TeamIcon);
|