41abbcc861
This reverts commit b9f3146180
.
12 lines
466 B
JavaScript
12 lines
466 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectFollowedTags, selectBlockedChannels } from 'lbry-redux';
|
|
import { selectSubscriptions } from 'redux/selectors/subscriptions';
|
|
import ChannelsFollowingManagePage from './view';
|
|
|
|
const select = state => ({
|
|
followedTags: selectFollowedTags(state),
|
|
subscribedChannels: selectSubscriptions(state),
|
|
blockedChannels: selectBlockedChannels(state),
|
|
});
|
|
|
|
export default connect(select)(ChannelsFollowingManagePage);
|