mattermost-mobile/app/components/sidebars/main/drawer_swiper/index.js
2019-10-04 15:06:22 -07:00

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);