lbry-desktop/ui/page/channelsFollowingDiscover/index.js
2020-06-23 16:21:40 -04:00

13 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);