reagent/examples/simple/example.html

18 lines
352 B
HTML
Raw Normal View History

2013-12-16 22:19:36 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
2015-02-09 11:07:46 +00:00
<title>Example</title>
2013-12-16 22:39:22 +00:00
<link rel="stylesheet" href="example.css">
2013-12-16 22:19:36 +00:00
</head>
<body>
2015-02-09 08:43:43 +00:00
<div id="app">
2015-02-09 11:07:46 +00:00
<h1>Reagent example app see README.md</h1>
2015-02-09 08:43:43 +00:00
</div>
<script src="target/client.js"></script>
<script>
2013-12-16 22:39:22 +00:00
simpleexample.run();
2013-12-16 22:19:36 +00:00
</script>
</body>
</html>