Created
February 29, 2016 22:13
-
-
Save andrewjmead/8827dbfaa86ec19dcbe8 to your computer and use it in GitHub Desktop.
Marcus - Show Todo
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
| var ShowTodo = React.createClass({ | |
| render: function () { | |
| console.log('rendering ShowTodo'); | |
| return ( | |
| <div> | |
| <input type="text" onChange={this.textChange}/> | |
| </div> | |
| ) | |
| }, | |
| textChange: function () { | |
| console.log('textchange'); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment