-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 951 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>
<title>
30 Days of React
</title>
<link rel="stylesheet" href="/css/fa.css">
<link rel="stylesheet" href="/todos/todos.css">
<script src="/scripts/react.js"></script>
<script src="/scripts/react-dom.js"></script>
<script src="/scripts//babel.min.js"></script>
</head>
<body>
<div id="root"></div>
<script type="text/babel" src="/todos/create-todo.js"></script>
<script type="text/babel" src="/todos/todo-list-item.js"></script>
<script type="text/babel" src="/todos/todos-list.js"></script>
<script type="text/babel" src="/todos/todos.js"></script>
<script type="text/babel" src="/todos/app.js"></script>
<script type="text/babel">
ReactDOM.render(
<App />,
document.querySelector("#root")
)
</script>
</body>
</html>