Skip to content

Instantly share code, notes, and snippets.

@nicolaslopezj
Created October 12, 2016 23:41
Show Gist options
  • Save nicolaslopezj/1751d190ef122648a2cba706d442a86a to your computer and use it in GitHub Desktop.
Save nicolaslopezj/1751d190ef122648a2cba706d442a86a to your computer and use it in GitHub Desktop.
/* Before */
class Profile extends React.Component {
render () {
return <div>{this.props.data.currentUser.login}</div>
}
}
/* After */
class Profile extends React.Component {
render () {
return <div>{this.props.currentUser.login}</div>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment