mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-28 07:51:31 +00:00
10 lines
316 B
JavaScript
10 lines
316 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectMyChannelClaims, selectFetchingMyChannels } from 'lbry-redux';
|
|
import Welcome from './view';
|
|
|
|
const select = state => ({
|
|
channels: selectMyChannelClaims(state),
|
|
fetchingChannels: selectFetchingMyChannels(state),
|
|
});
|
|
|
|
export default connect(select)(Welcome);
|