Renamed files
This commit is contained in:
committed by
Nicolò Ribaudo
parent
07e69c009b
commit
0f42accb87
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx("div", {
|
||||
children: "foo"
|
||||
}, void 0, "bar");
|
||||
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx(Baz, {
|
||||
foo: "bar"
|
||||
});
|
||||
@@ -0,0 +1 @@
|
||||
babelHelpers.jsx(Baz, {});
|
||||
@@ -0,0 +1,7 @@
|
||||
var TestComponent = React.createClass({
|
||||
render: function () {
|
||||
return babelHelpers.jsx("span", {
|
||||
className: this.props.someProp
|
||||
});
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1 @@
|
||||
React.createElement(React.Fragment, null, babelHelpers.jsx("span", {}), babelHelpers.jsx("div", {}));
|
||||
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx("foo", {
|
||||
bar: "foo"
|
||||
});
|
||||
@@ -0,0 +1 @@
|
||||
babelHelpers.jsx("foo", {});
|
||||
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx(Foo, {
|
||||
"data-value": "bar"
|
||||
}, "foo" + "baz");
|
||||
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx(Foo, {
|
||||
"data-value": "bar"
|
||||
}, "foo");
|
||||
@@ -0,0 +1,8 @@
|
||||
"use strict";
|
||||
|
||||
var _export = require("./export");
|
||||
|
||||
//index.js file
|
||||
function ParentComponent() {
|
||||
return babelHelpers.jsx(_export.form.TestComponent, {});
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
var _reactBootstrap = require("react-bootstrap");
|
||||
|
||||
var _default = CustomModal = () => babelHelpers.jsx(_reactBootstrap.Modal.Header, {}, void 0, "foobar");
|
||||
|
||||
exports.default = _default;
|
||||
@@ -0,0 +1 @@
|
||||
babelHelpers.jsx(Baz, {});
|
||||
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx(Foo, {
|
||||
className: "foo"
|
||||
}, void 0, bar, babelHelpers.jsx(Baz, {}, "baz"));
|
||||
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx("div", {
|
||||
className: "foo"
|
||||
}, void 0, bar);
|
||||
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx("div", {
|
||||
className: "foo"
|
||||
}, void 0, bar, babelHelpers.jsx(Baz, {}, "baz"));
|
||||
@@ -0,0 +1,3 @@
|
||||
React.createElement(Foo, {
|
||||
ref: "bar"
|
||||
});
|
||||
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx(Baz, {
|
||||
foo: "bar"
|
||||
});
|
||||
@@ -0,0 +1 @@
|
||||
babelHelpers.jsx(Baz, {});
|
||||
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx("foo", {
|
||||
bar: "foo"
|
||||
});
|
||||
@@ -0,0 +1 @@
|
||||
babelHelpers.jsx("foo", {});
|
||||
@@ -0,0 +1,3 @@
|
||||
babelHelpers.jsx(Foo, {
|
||||
bar: true
|
||||
});
|
||||
@@ -0,0 +1 @@
|
||||
React.createElement(Foo, bar);
|
||||
@@ -0,0 +1,3 @@
|
||||
var test = babelHelpers.jsx(T, {
|
||||
"default": " some string "
|
||||
});
|
||||
Reference in New Issue
Block a user