Is there any way in javascript or react to load a script inside the index.html and then import that loaded script in another file?
index.html
<body>
<script
type="text/javascript"
src="http://localhost:3001/myService.js"
></script>
<div id="root"></div>
</body>
anyOtherComponent.js
import myService from " ";
Any suggestions are welcome.