mirror of https://github.com/status-im/reagent.git
25 lines
748 B
HTML
25 lines
748 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Testing reagent</title>
|
|
<link rel="stylesheet" href="../examples/todomvc/todos.css">
|
|
<link rel="stylesheet" href="../examples/todomvc/todosanim.css">
|
|
<link rel="stylesheet" href="../examples/simple/example.css">
|
|
<link rel="stylesheet" href="demo.css">
|
|
<style type="text/css">
|
|
.runtests { margin-bottom: 400px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>This will become an example when compiled</h1>
|
|
<script type="text/javascript" src="../target/cljs-client.js"></script>
|
|
<script type="text/javascript">
|
|
if (typeof runtests !== 'undefined') {
|
|
runtests.mounttests();
|
|
} else {
|
|
demo.mountdemo();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|