fis-component 0.0.14 → 0.0.15

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/cjs/index.js CHANGED
@@ -1,6 +1,5 @@
1
1
  'use strict';
2
2
 
3
- var jsxRuntime = require('react/jsx-runtime');
4
3
  var React = require('react');
5
4
  var ReactDOM = require('react-dom');
6
5
 
@@ -9805,7 +9804,7 @@ if (process.env.NODE_ENV !== 'production') {
9805
9804
  }
9806
9805
 
9807
9806
  const FisButton = () => {
9808
- return jsxRuntime.jsx(Button, { children: "Hello from my React component!" });
9807
+ return React.createElement(Button, null, "Hello from my React component!");
9809
9808
  };
9810
9809
 
9811
9810
  exports.FisButton = FisButton;