export const selectFeatureProperty = createSelector(
selectFeature,
(state: FeatureState) => state.property
);
Angular NgRx Selector
Angular TypeScript RecipesThe code exports a custom selector that can be used to get the value of a property on a FeatureState object.
Shortcut: angular.ngrx.selector
0 Comments
Add Comment
Log in to add a comment