lbry-desktop/ui/page/channelsFollowingDiscover/index.js

14 lines
508 B
JavaScript
Raw Normal View History

2020-01-02 17:30:27 +01:00
import { connect } from 'react-redux';
import { selectFollowedTags } from 'lbry-redux';
import { selectBlockedChannels } from 'redux/selectors/blocked';
import { selectSubscriptions } from 'redux/selectors/subscriptions';
2020-01-02 17:30:27 +01:00
import ChannelsFollowingManagePage from './view';
const select = state => ({
followedTags: selectFollowedTags(state),
2020-01-02 17:30:27 +01:00
subscribedChannels: selectSubscriptions(state),
blockedChannels: selectBlockedChannels(state),
2020-01-02 17:30:27 +01:00
});
export default connect(select)(ChannelsFollowingManagePage);