lbry-desktop/ui/component/channelSelector/index.js
seanyesmunt 4420983a79 cleanup
2020-03-19 12:12:19 -04:00

10 lines
249 B
JavaScript

import { connect } from 'react-redux';
import SelectChannel from './view';
import { selectMyChannelClaims } from 'lbry-redux';
const select = state => ({
channels: selectMyChannelClaims(state),
});
export default connect(select)(SelectChannel);