-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (21 loc) · 852 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>YASL</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<!-- don't use this in production: -->
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
</head>
<body>
<!-- we will put our react component inside this div -->
<div id="root"></div>
<!-- load react -->
<script src="https://unpkg.com/react/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom/umd/react-dom.development.js" crossorigin></script>
<!-- load our react component. -->
<script src="todo.js" defer type="text/babel"></script>
<script src="form.js" defer type="text/babel"></script>
<script src="index.js" defer type="text/babel"></script>
</body>
</html>