* Entry screen and Channel Loader improvements * Feedback review * Removed unnecessary style array
16 lines
511 B
JavaScript
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);
|