-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
22 lines (21 loc) · 907 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
<!doctype html>
<html lang="en" data-framework="react">
<head>
<meta charset="utf-8">
<title>React TodoMVC example</title>
<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
</head>
<body>
<section class="todoapp"></section>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<script src="node_modules/classnames/index.js"></script>
<script src="node_modules/director/build/director.min.js"></script>
<script src="node_modules/react/dist/react-with-addons.min.js"></script>
<script src="node_modules/react-dom/dist/react-dom.min.js"></script>
<script src="node_modules/styled-components/dist/styled-components.min.js"></script>
<script src="build.min.js"></script>
</body>
</html>