-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 1.23 KB
/
index.html
File metadata and controls
51 lines (48 loc) · 1.23 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React 18 Example</title>
</head>
<body>
<div id="root"></div>
<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>
const rootElement = document.getElementById("root");
const root = ReactDOM.createRoot(rootElement);
// Button element
const button = React.createElement(
"button",
{
type: "button",
},
"Open"
);
const article = React.createElement(
"article",
null,
React.createElement("h2", null, "React Article"),
React.createElement("img", {
src: "",
alt: "Placeholder",
}),
React.createElement(
"p",
null,
"This is a simple article generated using React."
),
button
);
const container = React.createElement("div", null, article, article);
root.render(container);
</script>
</body>
</html>