Youtube in React: wiring up Trending component with most popular videos next page token and allMostPopularVideosLoaded boolean
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
allMostPopularVideosLoaded, | |
getMostPopularVideos, | |
getMostPopularVideosNextPageToken | |
} from '../../store/reducers/videos'; | |
/* ... */ | |
function mapStateToProps(state) { | |
return { | |
videos: getMostPopularVideos(state), | |
youtubeLibraryLoaded: getYoutubeLibraryLoaded(state), | |
allMostPopularVideosLoaded: allMostPopularVideosLoaded(state), | |
nextPageToken: getMostPopularVideosNextPageToken(state), | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment