mattermost-mobile/app/components/team_icon/index.js
2018-06-19 19:14:50 -04:00

18 lines
527 B
JavaScript

// Copyright (c) 2015-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);