Added notifications state selectors

This commit is contained in:
Giuseppe Digilio
2018-03-05 15:15:54 +01:00
parent 0b50d14b06
commit 31edf91c0a

View File

@@ -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;