2021-10-23 04:41:43 +02:00
|
|
|
const selectState = (state) => state.homepage || {};
|
2021-10-17 10:36:14 +02:00
|
|
|
|
2021-10-23 04:41:43 +02: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;
|