-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (21 loc) · 765 Bytes
/
index.html
File metadata and controls
26 lines (21 loc) · 765 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<todo-list></todo-list>
<br>
<br>
<todo-redux-list></todo-redux-list>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="node_modules/immutable/dist/immutable.min.js"></script>
<script src="node_modules/redux/dist/redux.min.js"></script>
<script src="node_modules/angular/angular.min.js"></script>
<script src="dist/build.js"></script>
</body>
</html>