2015-02-19 10:47:44 +11:00

14 lines
251 B
JavaScript

var foo = function foo() {
var _this = this;
return function () {
return React.createElement(_this, null);
};
};
var bar = function bar() {
var _this = this;
return function () {
return React.createElement(_this.foo, null);
};
};