Skip to content

Instantly share code, notes, and snippets.

@mattiamanzati
Created February 28, 2016 18:35
Show Gist options
  • Save mattiamanzati/ff21009da5f705ebb4cd to your computer and use it in GitHub Desktop.
Save mattiamanzati/ff21009da5f705ebb4cd to your computer and use it in GitHub Desktop.
const getUsers = (state) => state.users;
const getLoggedUserId = (state) => state.auth;
const getLoggedUser = (state) => getUsers(state)[getLoggedUserId(state)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment