This commit is contained in:
Cheng Lou 2013-07-17 16:28:04 -04:00
parent fc6a567e0e
commit dd14fdfdc5
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ var TodoApp = React.createClass({\n\
<div>\n\
<h3>TODO</h3>\n\
<TodoList items={this.state.items} />\n\
<form onSubmit={this.handleSubmit.bind(this)}>\n\
<input onKeyUp={this.onKey.bind(this)} value={this.state.text} />\n\
<form onSubmit={this.handleSubmit}>\n\
<input onKeyUp={this.onKey} defaultValue={this.state.text} />\n\
<button>{'Add #' + (this.state.items.length + 1)}</button>\n\
</form>\n\
</div>\n\