Files
dspace-angular/src/app/core/core.selectors.ts
2019-03-21 17:20:33 +01:00

8 lines
234 B
TypeScript

import { createFeatureSelector } from '@ngrx/store';
import { CoreState } from './core.reducers';
/**
* Base selector to select the core state from the store
*/
export const coreSelector = createFeatureSelector<CoreState>('core');