mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
16 lines
567 B
JavaScript
16 lines
567 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectFollowedTags } from 'redux/selectors/tags';
|
|
import { selectSubscriptions } from 'redux/selectors/subscriptions';
|
|
import { doChannelSubscribe } from 'redux/actions/subscriptions';
|
|
import UserChannelFollowIntro from './view';
|
|
|
|
const select = state => ({
|
|
followedTags: selectFollowedTags(state),
|
|
subscribedChannels: selectSubscriptions(state),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
channelSubscribe: uri => dispatch(doChannelSubscribe(uri)),
|
|
});
|
|
|
|
export default connect(select, perform)(UserChannelFollowIntro);
|