lbry-desktop/ui/page/channelsFollowing/index.js
2020-02-20 13:17:11 -05:00

10 lines
290 B
JavaScript

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