Is there a way to load the react file inside Javascript files? No library and no nodeJs
my code :
main.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="app.js" type="module"></script>
</head>
<body>
</body>
</html>
app.js
import React from './react.development.js';
import ReactDom from './react-dom.development.js';