message-verify 0.0.26-beta.0 → 0.0.28-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
- package/src/index.tsx +3 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
2
|
-
import App from './app';
|
2
|
+
import App from './app.js';
|
3
3
|
import { createRoot } from 'react-dom/client';
|
4
4
|
function createMessageVerify(props) {
|
5
5
|
// 创建一个挂载点
|
@@ -18,3 +18,4 @@ function createMessageVerify(props) {
|
|
18
18
|
};
|
19
19
|
}
|
20
20
|
export { createMessageVerify };
|
21
|
+
export default createMessageVerify;
|
package/package.json
CHANGED
package/src/index.tsx
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import App from './app';
|
1
|
+
import App from './app.js';
|
2
2
|
import { createRoot } from 'react-dom/client';
|
3
3
|
|
4
4
|
interface Props {
|
@@ -30,4 +30,5 @@ function createMessageVerify(props: Props) {
|
|
30
30
|
};
|
31
31
|
}
|
32
32
|
|
33
|
-
export { createMessageVerify };
|
33
|
+
export { createMessageVerify };
|
34
|
+
export default createMessageVerify;
|