2022-02-02 13:44:33 +01:00
|
|
|
import { connect } from 'react-redux';
|
2022-02-02 13:49:02 +01:00
|
|
|
import SwipeableDrawer from './view';
|
2022-02-02 13:44:33 +01:00
|
|
|
import { selectTheme } from 'redux/selectors/settings';
|
|
|
|
import { selectMobilePlayerDimensions } from 'redux/selectors/app';
|
|
|
|
|
|
|
|
const select = (state) => ({
|
|
|
|
theme: selectTheme(state),
|
|
|
|
mobilePlayerDimensions: selectMobilePlayerDimensions(state),
|
|
|
|
});
|
|
|
|
|
2022-02-02 13:49:02 +01:00
|
|
|
export default connect(select)(SwipeableDrawer);
|