Created
October 2, 2019 13:17
-
-
Save indreklasn/ccda77c2369e22f9dd9d54e888da5583 to your computer and use it in GitHub Desktop.
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
import { createSelector } from "reselect"; | |
const selectAllPets = state => state.pets.data; | |
export const selectAllDogs = createSelector( | |
selectAllPets, | |
allPets => allPets | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment