2021-10-23 10:41:43 +08:00
|
|
|
const selectState = (state) => state.homepage || {};
|
2021-10-17 16:36:14 +08:00
|
|
|
|
2021-10-23 10:41:43 +08:00
|
|
|
export const selectFeaturedUris = (state) => selectState(state).featuredUris;
|
|
|
|
export const selectFetchingFeaturedUris = (state) => selectState(state).fetchingFeaturedContent;
|
|
|
|
export const selectTrendingUris = (state) => selectState(state).trendingUris;
|
|
|
|
export const selectFetchingTrendingUris = (state) => selectState(state).fetchingTrendingContent;
|