-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (22 loc) · 891 Bytes
/
index.html
File metadata and controls
23 lines (22 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>React Todo-list</title>
<script src="https://fb.me/react-0.13.3.js"></script>
<script src="https://fb.me/JSXTransformer-0.13.3.js"></script>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
</head>
<body>
<div id="wrapper">
</div>
<script src="js/TodoRepository.js"></script>
<script type="text/jsx" src="js/TodoApp.js"></script>
<script type="text/jsx" src="js/TodoForm.js"></script>
<script type="text/jsx" src="js/TodoList.js"></script>
<script type="text/jsx" src="js/Todo.js"></script>
<script type="text/jsx">
React.render(<TodoApp/>,document.getElementById('wrapper'));
</script
</body>
</html>