Remove extraneous binds from some fixtures

This commit is contained in:
Nathan Hunzaker
2017-01-06 17:10:41 -05:00
parent 85aa7eebfc
commit c31297b6d9
2 changed files with 2 additions and 2 deletions
@@ -12,7 +12,7 @@ const RangeInputs = React.createClass({
<form>
<fieldset>
<legend>Controlled</legend>
<input type="range" value={this.state.value} onChange={this.onChange.bind(this)} />
<input type="range" value={this.state.value} onChange={this.onChange} />
<span className="hint">Value: {this.state.value}</span>
</fieldset>
@@ -13,7 +13,7 @@ const TextAreaFixtures = React.createClass({
<form>
<fieldset>
<legend>Controlled</legend>
<textarea value={this.state.value} onChange={this.onChange.bind(this)} />
<textarea value={this.state.value} onChange={this.onChange} />
</fieldset>
<fieldset>