Skip to content

Commit edadeeb

Browse files
committed
fix test
1 parent 354dd04 commit edadeeb

File tree

2 files changed

+27
-0
lines changed
  • tests/build_tests/jsx_settings_inheritance/src

2 files changed

+27
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Generated by ReScript, PLEASE EDIT WITH CARE
2+
'use strict';
3+
4+
let A$A = require("a/src/A.mjs");
5+
let B$B = require("b/src/B.mjs");
6+
let JsxRuntime = require("react/jsx-runtime");
7+
8+
function C(props) {
9+
return JsxRuntime.jsxs(JsxRuntime.Fragment, {
10+
children: [
11+
JsxRuntime.jsx(A$A.make, {}),
12+
JsxRuntime.jsx(B$B.make, {})
13+
]
14+
});
15+
}
16+
17+
let make = C;
18+
19+
exports.make = make;
20+
/* A-A Not a pure module */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@react.component
2+
let make = () => {
3+
<>
4+
<A.A />
5+
<B.B />
6+
</>
7+
}

0 commit comments

Comments
 (0)