17 lines
403 B
JavaScript
17 lines
403 B
JavaScript
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {getTheme} from 'app/selectors/preferences';
|
|
|
|
import PostList from './post_list';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
return {
|
|
theme: getTheme(state),
|
|
...ownProps
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(PostList);
|