We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 354dd04 commit edadeebCopy full SHA for edadeeb
tests/build_tests/jsx_settings_inheritance/src/C.mjs
@@ -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 */
tests/build_tests/jsx_settings_inheritance/src/C.res
@@ -0,0 +1,7 @@
+@react.component
+let make = () => {
+ <>
+ <A.A />
+ <B.B />
+ </>
0 commit comments