2020-03-18 13:11:37 -04:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import SelectChannel from './view';
|
2020-03-19 10:38:20 -04:00
|
|
|
import { selectMyChannelClaims } from 'lbry-redux';
|
2020-03-18 13:11:37 -04:00
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
channels: selectMyChannelClaims(state),
|
|
|
|
});
|
|
|
|
|
2020-03-19 10:38:20 -04:00
|
|
|
export default connect(select)(SelectChannel);
|