Skip to content

Instantly share code, notes, and snippets.

@kocisov
Created April 30, 2017 19:10
Show Gist options
  • Save kocisov/ea9ec569408c36458f04af3e66565e2b to your computer and use it in GitHub Desktop.
Save kocisov/ea9ec569408c36458f04af3e66565e2b to your computer and use it in GitHub Desktop.
eq
function mapStateToProps (state) {
return {
user: state.user
}
}
// or
function mapStateToProps ({ user }) {
return {
user
}
}
connect(mapStateToProps)(UI)
// equivalent to
connect(({ user }) => ({ user }))(UI)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment