lbry-desktop/ui/page/channelsFollowingDiscover/index.js
2021-03-03 12:54:06 -05:00

15 lines
622 B
JavaScript

import { connect } from 'react-redux';
import { selectFollowedTags } from 'redux/selectors/tags';
import { selectMutedChannels } from 'redux/selectors/blocked';
import { selectSubscriptions } from 'redux/selectors/subscriptions';
import { selectHomepageData } from 'redux/selectors/settings';
import ChannelsFollowingManagePage from './view';
const select = (state) => ({
followedTags: selectFollowedTags(state),
subscribedChannels: selectSubscriptions(state),
blockedChannels: selectMutedChannels(state),
homepageData: selectHomepageData(state),
});
export default connect(select)(ChannelsFollowingManagePage);