Created
May 11, 2018 12:16
-
-
Save dherges/a070ad9f7e454ef8bb494e50f3fa5fcd to your computer and use it in GitHub Desktop.
Selector
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createSelector } from '@ngrx/store'; | |
import { State } from './reducer.ts'; | |
export const selectTodosCount = createSelector((state: State): number => { | |
return Object.keys(state).length; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment