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);
|