DEV Community

Cover image for Test Post

Test Post

suntong on May 05, 2019

  Topic 1 Inline-style image: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Itaque rursus eadem ratione, qua sum paulo an...
Collapse
 
suntong profile image
suntong

The curried functions are perfect for this. The arrow syntax lends itself to this.

valueChange = (key) => {
  return function (e) {
    var obj= {};
    state[key] = e.target.value; //<-- this is a bug btw.
    this.setState(obj);
  }.bind(this);
}
Collapse
 
suntong profile image
suntong

comment 2

Collapse
 
suntong profile image
suntong

comment 1