Notifications

This commit is contained in:
Max Lynch
2021-01-11 18:56:03 -06:00
parent d71b7eb173
commit c60f5b3dcc
4 changed files with 51 additions and 22 deletions
+1 -5
View File
@@ -2,11 +2,7 @@ import { createSelector } from 'reselect';
const getState = state => state;
export const getMenuOpen = createSelector(getState, state => state.menuOpen);
export const getNotificationsOpen = createSelector(getState, state => state.notificationsOpen);
export const getCurrentPage = createSelector(getState, state => state.currentPage);
// App specific selectors
export const getHomeItems = createSelector(getState, state => state.homeItems);
export const getLists = createSelector(getState, state => state.lists);
export const getNotifications = createSelector(getState, state => state.notifications);
export const getSettings = createSelector(getState, state => state.settings);