Last active
August 10, 2018 04:23
-
-
Save marianocodes/d46980662a1d9d1739dd3c31e31f68f9 to your computer and use it in GitHub Desktop.
NgRx Entities State
This file contains hidden or 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
export const selectCarState = (state: State) => state.cars; | |
export const selectPlaceState = (state: State) => state.places; | |
export const { selectAll: selectAllCars } = adapterCar.getSelectors(); | |
export const { selectAll: selectAllPlaces } = adapterPlace.getSelectors(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment