Skip to content

Instantly share code, notes, and snippets.

@aarondail
Created July 14, 2020 17:00
Show Gist options
  • Save aarondail/1c19fa84142211bdb8f7a25a80c900c1 to your computer and use it in GitHub Desktop.
Save aarondail/1c19fa84142211bdb8f7a25a80c900c1 to your computer and use it in GitHub Desktop.
const getAllFooNames1 = createSelector(
stateTree => stateTree,
stateTree => {
return stateTree.allFoos.map(foo => foo.name);
});
const getAllFooNames2 = createSelector(
stateTree => stateTree.allFoos,
allFoos => {
return allFoos.map(foo => foo.name);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment