mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 22:43:03 +00:00
8 lines
234 B
TypeScript
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');
|