27f346d8f1
It was not meant to be used for these cases -- wasting resources creating and going through the cache for each simple direct access.
6 lines
404 B
JavaScript
6 lines
404 B
JavaScript
const selectState = (state) => state.homepage || {};
|
|
|
|
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;
|