Skip to content

Instantly share code, notes, and snippets.

@iofjuupasli
Created March 14, 2016 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iofjuupasli/3f3cb63e577cf3ab957a to your computer and use it in GitHub Desktop.
Save iofjuupasli/3f3cb63e577cf3ab957a to your computer and use it in GitHub Desktop.
// 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