README
react-cmp-dtls-app
Simple package to learn how to publish react component into NPM
import {FirstWidgets, SecondWidgets} from "react-multiple-widgets-app";
<FirstWidgets /> //first component
<SecondWidgets/> //second component
;
Simple package to learn how to publish react component into NPM
<script type="module">
import reactMultipleWidgetsApp from 'https://cdn.skypack.dev/react-multiple-widgets-app';
</script>
Simple package to learn how to publish react component into NPM
import {FirstWidgets, SecondWidgets} from "react-multiple-widgets-app";
<FirstWidgets /> //first component
<SecondWidgets/> //second component
;