re-frame/examples/simple/example.html

20 lines
411 B
HTML
Raw Normal View History

2015-02-25 01:31:11 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Example</title>
<link rel="stylesheet" href="example.css">
</head>
<body>
<div id="app">
<h1>Reagent example app see README.md</h1>
</div>
<script src="target/client.js"></script>
<script>
2015-04-17 12:22:43 +00:00
window.onload = function () {
simpleexample.core.run();
}
2015-02-25 01:31:11 +00:00
</script>
</body>
</html>