Created
March 14, 2016 14:59
-
-
Save iofjuupasli/3f3cb63e577cf3ab957a to your computer and use it in GitHub Desktop.
This file contains 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
// A | |
<li className={classNames({ | |
completed: this.props.todo.completed, | |
editing: this.props.editing | |
})}> | |
// B | |
<input | |
className="toggle" | |
type="checkbox" | |
checked={this.props.todo.completed} | |
onChange={this.props.onToggle} | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment