lbry-desktop/ui/component/swipeableDrawerExpand/index.js

10 lines
247 B
JavaScript
Raw Normal View History

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