18 lines
357 B
HTML
18 lines
357 B
HTML
<!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>
|
||
simpleexample.core.run();
|
||
</script>
|
||
</body>
|
||
</html>
|