import { StoreState } from 'app/common/store/store.types'; const notificationsStateSlice = (state: StoreState) => state.notifications; export const selectNotifications = (state: StoreState) => notificationsStateSlice(state).collection;