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