lbry-desktop/src/ui/component/youtubeChannelList/index.js

23 lines
386 B
JavaScript
Raw Normal View History

2019-09-13 03:53:33 +02:00
import { connect } from 'react-redux';
// fetchUserInfo
import { selectYoutubeChannels } from 'lbryinc';
import YoutubeChannelList from './view';
const select = state => ({
ytChannels: selectYoutubeChannels(state),
});
// const perform = dispatch => ({
// claimChannels: () => dispatch(doTransfer)
// });
/*
*/
export default connect(
select,
null
)(YoutubeChannelList);