lbry-desktop/ui/modal/modalChannelCreate/index.js
2019-12-09 10:04:07 -05:00

12 lines
249 B
JavaScript

import { connect } from 'react-redux';
import { doHideModal } from 'redux/actions/app';
import ChannelCreate from './view';
const select = state => ({});
const perform = {
doHideModal,
};
export default connect(select, perform)(ChannelCreate);