Files
babel/packages/babel-plugin-transform-react-jsx/test/fixtures/react/arrow-functions/expected.js

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);
};
};