-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 952 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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Template • TodoMVC</title>
<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
<!-- CSS overrides - remove if you don't need it -->
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<section class="todoapp">
</section>
<!-- Scripts here. Don't remove ↓ -->
<script src="node_modules/lib/react.js"></script>
<script src="node_modules/lib/react-dom.js"></script>
<script src="node_modules/lib/browser.min.js"></script>
<script type="text/babel" src="js/header.js"></script>
<script type="text/babel" src="js/footer.js"></script>
<script type="text/babel" src="js/list.js"></script>
<script type="text/babel" src="js/app.js"></script>
<script ></script>
</body>
</html>