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

10 lines
290 B
JavaScript
Raw Normal View History

2020-01-02 17:30:27 +01:00
import { connect } from 'react-redux';
2020-02-17 20:12:28 +01:00
import { selectSubscriptions } from 'redux/selectors/subscriptions';
import ChannelsFollowingPage from './view';
2020-01-02 17:30:27 +01:00
const select = state => ({
subscribedChannels: selectSubscriptions(state),
});
2020-02-17 20:12:28 +01:00
export default connect(select)(ChannelsFollowingPage);