2018-01-09 15:36:42 +01:00

16 lines
249 B
JavaScript

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