reagent/examples/todomvc/todomvc.html

17 lines
442 B
HTML
Raw Normal View History

2013-12-16 22:19:36 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
2014-01-17 10:12:11 +00:00
<title>todomvc with reagent</title>
2013-12-16 22:19:36 +00:00
<link rel="stylesheet" href="todos.css">
2013-12-17 21:25:11 +00:00
<link rel="stylesheet" href="todosanim.css">
2013-12-16 22:19:36 +00:00
</head>
<body>
<h1>This will become todomvc when the ClojureScript is compiled</h1>
<script type="text/javascript" src="target/client.js"></script>
<script type="text/javascript">
todomvc.run();
</script>
</body>
</html>