diff --git a/src/app/shared/notifications/selectors.ts b/src/app/shared/notifications/selectors.ts new file mode 100644 index 0000000000..a0b9487f42 --- /dev/null +++ b/src/app/shared/notifications/selectors.ts @@ -0,0 +1,9 @@ +/** + * Returns the user state. + * @function getUserState + * @param {AppState} state Top level state. + * @return {AuthState} + */ +import { AppState } from '../../app.reducer'; + +export const notificationsStateSelector = (state: AppState) => state.notifications;