lbry-desktop/ui/component/userChannelFollowIntro/index.js
2020-02-28 09:37:31 -05:00

12 lines
384 B
JavaScript

import { connect } from 'react-redux';
import { selectFollowedTags } from 'lbry-redux';
import { selectSubscriptions } from 'redux/selectors/subscriptions';
import UserChannelFollowIntro from './view';
const select = state => ({
followedTags: selectFollowedTags(state),
subscribedChannels: selectSubscriptions(state),
});
export default connect(select)(UserChannelFollowIntro);