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>
|
2015-05-08 05:01:19 +00:00
|
|
|
|
<script src="js/client.js"></script>
|
2015-02-25 01:31:11 +00:00
|
|
|
|
<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>
|