Skip to content

Instantly share code, notes, and snippets.

@andrewjmead
Created February 29, 2016 22:13
Show Gist options
  • Select an option

  • Save andrewjmead/8827dbfaa86ec19dcbe8 to your computer and use it in GitHub Desktop.

Select an option

Save andrewjmead/8827dbfaa86ec19dcbe8 to your computer and use it in GitHub Desktop.
Marcus - Show Todo
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