@pinerohit11/testwidget 0.1.3 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +6 -1
- package/dist/index.mjs +6 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
@@ -25,8 +25,13 @@ __export(app_exports, {
|
|
25
25
|
module.exports = __toCommonJS(app_exports);
|
26
26
|
|
27
27
|
// src/app/components/Greet.tsx
|
28
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
28
29
|
function Greet({ name }) {
|
29
|
-
return /* @__PURE__ */
|
30
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("h1", { children: [
|
31
|
+
"Hello, ",
|
32
|
+
name,
|
33
|
+
"!"
|
34
|
+
] });
|
30
35
|
}
|
31
36
|
// Annotate the CommonJS export names for ESM import in node:
|
32
37
|
0 && (module.exports = {
|
package/dist/index.mjs
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
// src/app/components/Greet.tsx
|
2
|
+
import { jsxs } from "react/jsx-runtime";
|
2
3
|
function Greet({ name }) {
|
3
|
-
return /* @__PURE__ */
|
4
|
+
return /* @__PURE__ */ jsxs("h1", { children: [
|
5
|
+
"Hello, ",
|
6
|
+
name,
|
7
|
+
"!"
|
8
|
+
] });
|
4
9
|
}
|
5
10
|
export {
|
6
11
|
Greet
|