Created
April 30, 2017 19:10
-
-
Save kocisov/ea9ec569408c36458f04af3e66565e2b to your computer and use it in GitHub Desktop.
eq
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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