<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
.testjsx {
background-color: skyblue;
}
</style>
</head>
<body>
<div id="test"></div>
<script type="text/javascript" src="../js/react.development.js"></script>
<script
type="text/javascript"
src="../js/react-dom.development.js"
></script>
<script type="text/javascript" src="../js/babel.min.js"></script>
<script type="text/babel">
const h1id = "h1Id";
const myData = "Hello React";
const VDOM = (
<div>
<h1 id={h1id} className="testjsx">
<span style={{ fontSize: "50px", color: "pink" }}>{myData}</span>
</h1>
</div>
);
ReactDOM.render(VDOM, document.querySelector("#test"));
</script>
</body>
</html>