jrs-react 1.0.16 → 1.0.17
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/build/index.es.js +4 -2
- package/build/index.js +4 -2
- package/package.json +1 -1
- package/src/components/JRTest.jsx +4 -2
package/build/index.es.js
CHANGED
|
@@ -2810,8 +2810,10 @@ var React = /*@__PURE__*/getDefaultExportFromCjs(reactExports);
|
|
|
2810
2810
|
function JRTest() {
|
|
2811
2811
|
return 'I am JRTest string';
|
|
2812
2812
|
}
|
|
2813
|
-
|
|
2814
|
-
|
|
2813
|
+
class JRTestReact extends React.Component {
|
|
2814
|
+
render() {
|
|
2815
|
+
return /*#__PURE__*/React.createElement("div", null, "JRTestReact");
|
|
2816
|
+
}
|
|
2815
2817
|
}
|
|
2816
2818
|
|
|
2817
2819
|
export { JRTest, JRTestReact };
|
package/build/index.js
CHANGED
|
@@ -2814,8 +2814,10 @@ var React = /*@__PURE__*/getDefaultExportFromCjs(reactExports);
|
|
|
2814
2814
|
function JRTest() {
|
|
2815
2815
|
return 'I am JRTest string';
|
|
2816
2816
|
}
|
|
2817
|
-
|
|
2818
|
-
|
|
2817
|
+
class JRTestReact extends React.Component {
|
|
2818
|
+
render() {
|
|
2819
|
+
return /*#__PURE__*/React.createElement("div", null, "JRTestReact");
|
|
2820
|
+
}
|
|
2819
2821
|
}
|
|
2820
2822
|
|
|
2821
2823
|
exports.JRTest = JRTest;
|
package/package.json
CHANGED