-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 851 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>React app </title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="icon" />
</head>
<body>
<div id="container">
<h1>Hi guys , mai</h1>
<div id="react-root">
</div>
<div id="react-root2"> </div>
</div>
<!-- <script>
let root = document.getElementById("container")
let heading = document.createElement("h2")
heading.innerHTML = "Rajeev Ranjan"
root.appendChild(heading);
</script> -->
<script crossorigin src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<script src="app.js"></script>
</body>
</html>