Skip to content

Instantly share code, notes, and snippets.

@tricoder42
Created June 6, 2017 19:30
Show Gist options
  • Save tricoder42/baa3eea231efb076248cbcddbce9cb37 to your computer and use it in GitHub Desktop.
Save tricoder42/baa3eea231efb076248cbcddbce9cb37 to your computer and use it in GitHub Desktop.
2017/06/06 [Medium] Use Selectors in Redux for Great Good
const initialState = {
user: null
}
const getUser = state => state.user
const isAuthenticated = state => Boolean(getUser(state))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment