Redux store for recent items. BOD-178

This commit is contained in:
Patrick Fic
2020-06-26 08:10:00 -07:00
parent ea77478b02
commit 82ee83c43b
6 changed files with 45 additions and 8 deletions

View File

@@ -12,6 +12,11 @@ export const selectBreadcrumbs = createSelector(
(application) => application.breadcrumbs
);
export const selectRecentItems = createSelector(
[selectApplication],
(application) => application.recentItems
);
export const selectScheduleLoad = createSelector(
[selectApplication],
(application) => application.scheduleLoad.load