reagent/examples/todomvc/resources/public/index.html

18 lines
342 B
HTML
Raw Permalink 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>
2020-03-28 11:53:07 +00:00
<script src="client.js"></script>
2015-02-09 11:25:12 +00:00
<script>
todomvc.core.run();
2015-02-09 11:25:12 +00:00
</script>
</body>
</html>