2015-01-30 11:05:16 +11:00

14 lines
245 B
JavaScript

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