Created
August 4, 2016 22:35
-
-
Save bcomnes/c910b88c4b51a7bca9c62c6ac14a7d0e 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
| class ReactComponent extends Component { | |
| constructor (props) { | |
| super(props) | |
| this.classMethod = this.classMethod.bind(this) | |
| } | |
| classMethod () { | |
| // do soemthing with 'this' | |
| } | |
| render () { | |
| <AnotherComponent onChange={this.classMethod} | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment