Files
react.dev/docs
张敏 e693d3f321 In Transferring Props guide, Manual Transfer section will lead an error
```c
var FancyCheckbox = React.createClass({
  render: function() {
    var fancyClass = this.props.checked ? 'FancyChecked' : 'FancyUnchecked';
    return (
      <div className={fancyClass} onClick={this.props.onClick}>
        {this.props.children}
      </div>
    );
  }
});
React.render(
  <FancyCheckbox checked={true} onClick={console.log}>
    Hello world!
  </FancyCheckbox>,
  document.body
);
```

When click `Hello world!` will lead a `Uncaught TypeError: Illegal invocation` error
2014-12-03 17:28:55 +08:00
..
2014-08-13 11:40:14 -07:00
2014-11-17 13:14:11 +01:00
2014-11-27 08:48:16 +01:00
2014-12-01 15:36:01 -05:00
2014-10-23 20:51:11 -07:00
2014-11-13 12:06:51 +00:00