re-frame/examples/todomvc/todomvc.html

20 lines
434 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Reframe Todomvc</title>
<link rel="stylesheet" href="todos.css">
</head>
<body>
<div id="app">
</div>
<script src="target/client.js"></script>
<script>
window.onload = function () {
// Notice that "-" gets turned into "_" when in javscript-land
todomvc.dev.start();
}
</script>
</body>
</html>