Last active
December 1, 2017 08:40
-
-
Save perjansson/88df6fada858dd5aa2f4df34e3d4adf3 to your computer and use it in GitHub Desktop.
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
| onClick={function(e) { | |
| this.setSelectedCar(e.target.value) | |
| }.bind(this)} | |
| // becomes | |
| onClick={e => this.setSelectedCar(e.target.value)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment