reagent/examples/simple/example.html

16 lines
406 B
HTML
Raw Normal View History

2013-12-16 23:19:36 +01:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
2014-01-17 11:12:11 +01:00
<title>reagent simple example</title>
2013-12-16 23:39:22 +01:00
<link rel="stylesheet" href="example.css">
2013-12-16 23:19:36 +01:00
</head>
<body>
<h1>This will become an example when the ClojureScript is compiled</h1>
<script type="text/javascript" src="target/client.js"></script>
<script type="text/javascript">
2013-12-16 23:39:22 +01:00
simpleexample.run();
2013-12-16 23:19:36 +01:00
</script>
</body>
</html>