17 lines
514 B
JavaScript
17 lines
514 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { selectSubscriptions, selectSuggestedChannels } from 'redux/selectors/subscriptions';
|
||
|
import { doFetchRecommendedSubscriptions } from 'redux/actions/subscriptions';
|
||
|
import ChannelsFollowingManagePage from './view';
|
||
|
|
||
|
const select = state => ({
|
||
|
subscribedChannels: selectSubscriptions(state),
|
||
|
suggestedSubscriptions: selectSuggestedChannels(state),
|
||
|
});
|
||
|
|
||
|
export default connect(
|
||
|
select,
|
||
|
{
|
||
|
doFetchRecommendedSubscriptions,
|
||
|
}
|
||
|
)(ChannelsFollowingManagePage);
|