re-frame/examples/todomvc/resources/public/index.html

19 lines
355 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="js/client.js"></script>
<script>
window.onload = function () {
todomvc.core.main();
}
</script>
</body>
</html>