Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Last active October 28, 2018 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save productioncoder/1e18e1fb3558378e9073ec2b1122c273 to your computer and use it in GitHub Desktop.
Save productioncoder/1e18e1fb3558378e9073ec2b1122c273 to your computer and use it in GitHub Desktop.
Youtube video categories selector
export const getVideoCategoryIds = createSelector(
state => state.videos.categories,
(categories) => {
return Object.keys(categories || {});
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment