* Keep the channel drawer opened on tablets * update en.json after running mmjstool * Set the channel drawer to width 220 * feedback review * PM Review * Fix snapshots
16 lines
445 B
JavaScript
16 lines
445 B
JavaScript
// Copyright (c) 2015-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 DraweSwiper from './drawer_swiper';
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
theme: getTheme(state),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, null, null, {forwardRef: true})(DraweSwiper);
|