-
Notifications
You must be signed in to change notification settings - Fork 84
/
index.html
34 lines (34 loc) · 1.53 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
28
29
30
31
32
33
34
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ReactJS + RefluxJS • TodoMVC</title>
<link rel="stylesheet" href="bower_components/todomvc-app-css/index.css">
<!-- CSS overrides - remove if you don't need it -->
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<section id="todoapp">
<!-- Bootstrap code will add components here, see js/components.jsx.js -->
</section>
<footer id="info">
<p>Double-click to edit a todo</p>
<!-- Remove the below line ↓ -->
<p>Template by <a href="http://github.com/sindresorhus">Sindre Sorhus</a></p>
<!-- Change this out with your name and url ↓ -->
<p>Created by <a href="https://github.com/spoike/refluxjs">Mikael Brassman</a></p>
<!--<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>-->
</footer>
<!-- Scripts here. Don't remove this ↓ -->
<!-- <script src="bower_components/todomvc-common/base.js"></script> -->
<script src="bower_components/react/react-with-addons.js"></script>
<script src="bower_components/react-router/dist/react-router.js"></script>
<script src="bower_components/react/JSXTransformer.js"></script>
<script src="bower_components/lodash/lodash.js"></script>
<script src="bower_components/reflux/dist/reflux.js"></script>
<script src="js/actions.js"></script>
<script src="js/store.js"></script>
<script type="text/jsx" src="js/components.jsx.js"></script>
</body>
</html>