Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created October 2, 2019 13:17
Show Gist options
  • Save indreklasn/ccda77c2369e22f9dd9d54e888da5583 to your computer and use it in GitHub Desktop.
Save indreklasn/ccda77c2369e22f9dd9d54e888da5583 to your computer and use it in GitHub Desktop.
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