reagent/examples/todomvc/example.html

18 lines
349 B
HTML
Raw Normal View History

2015-02-09 11:25:12 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Example</title>
<link rel="stylesheet" href="todos.css">
</head>
<body>
<div id="app">
<h1>Reagent example app see README.md</h1>
</div>
<script src="target/client.js"></script>
<script>
todomvc.core.run();
2015-02-09 11:25:12 +00:00
</script>
</body>
</html>