9 lines
290 B
JavaScript
9 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);
|