d9e65e8328
moartags CS tags followed category continue button, Remove card header on tags select limitShow tags count tags limit fix debug cs tags highlighting bugfix yarnlock
19 lines
563 B
JavaScript
19 lines
563 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectFollowedTags } from 'lbry-redux';
|
|
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);
|