mirror of https://github.com/status-im/reagent.git
16 lines
406 B
HTML
16 lines
406 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>reagent simple example</title>
|
|
<link rel="stylesheet" href="example.css">
|
|
</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">
|
|
simpleexample.run();
|
|
</script>
|
|
</body>
|
|
</html>
|