reagent/examples/todomvc/todomvc.html

16 lines
392 B
HTML
Raw Normal View History

2013-12-16 22:19:36 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>todomvc with cloact</title>
<link rel="stylesheet" href="todos.css">
</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>