mattermost-mobile/app/components/channel_loader/index.js
Elias Nahum cf3683272e Entry screen and Channel Loader improvements (perf part 4) (#1707)
* Entry screen and Channel Loader improvements

* Feedback review

* Removed unnecessary style array
2018-05-29 10:58:06 -04:00

16 lines
511 B
JavaScript

// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {connect} from 'react-redux';
import {getTheme} from 'mattermost-redux/selectors/entities/preferences';
import ChannelLoader from './channel_loader';
function mapStateToProps(state, ownProps) {
return {
channelIsLoading: ownProps.channelIsLoading || state.views.channel.loading,
theme: getTheme(state),
};
}
export default connect(mapStateToProps)(ChannelLoader);