Skip to content

Instantly share code, notes, and snippets.

@amalantony
Created March 29, 2017 08:49
Show Gist options
  • Select an option

  • Save amalantony/13c6ca05fed5ad7c225ca68c10b97efc to your computer and use it in GitHub Desktop.

Select an option

Save amalantony/13c6ca05fed5ad7c225ca68c10b97efc to your computer and use it in GitHub Desktop.
import { createSelector } from "reselect";
const getItems = state => state.products.get("items");
export const getRenderableItems = createSelector([getItems], items => {
return items;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment