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