-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (20 loc) · 802 Bytes
/
index.html
File metadata and controls
29 lines (20 loc) · 802 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Standing Alone React</title>
</head>
<body>
<div class="cfe-app" data-userid='1'></div>
<div class="cfe-app" data-userid='abc'></div>
<div class="cfe-app" data-userid='3'></div>
<div class="cfe-app" data-userid='4'></div>
<div class="cfe-app" data-userid='5'></div>
<!-- Load React. -->
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src="https://unpkg.com/react@16/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js" crossorigin></script>
<!-- Our React App (notice the type is babel) -->
<script src="./app.min.js" type='text/babel'></script>
</body>
</html>