lbry-desktop/ui/component/swipeableDrawerExpand/index.js
2022-04-07 11:44:25 -04:00

9 lines
247 B
JavaScript

import { connect } from 'react-redux';
import { doToggleAppDrawer } from 'redux/actions/app';
import DrawerExpandButton from './view';
const perform = {
onClick: doToggleAppDrawer,
};
export default connect(null, perform)(DrawerExpandButton);