Files
dspace-angular/src/app/shared/notifications/selectors.ts
2018-03-05 15:15:54 +01:00

10 lines
259 B
TypeScript

/**
* 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;