Files
babel/test/fixtures/transformation/react/arrow-functions/expected.js

16 lines
253 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);
};
};