-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
27 lines (26 loc) · 1.16 KB
/
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 lang="en" data-framework="react">
<head>
<meta charset="utf-8">
<title>React • TodoMVC</title>
<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
</head>
<body>
<section id="todoapp"></section>
<footer id="info">
<p>Double-click to edit a todo</p>
<p>Created by <a href="https://github.com/petehunt/">petehunt</a></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<script src="./node_modules/todomvc-common/base.js"></script>
<script src="./node_modules/director/build/director.js"></script>
<script src="./static/mod.js"></script>
<script src="./static/react-with-addons.js"></script>
<script src="./module/utils.js"></script>
<script src="./module/todoModel.js"></script>
<script type="text/javascript" src="module/todoItem.jsx"></script>
<script type="text/javascript" src="module/footer.jsx"></script>
<script type="text/javascript" src="./app.jsx"></script>
</body>
</html>