mirror of
https://github.com/status-im/reagent.git
synced 2025-02-11 11:26:30 +00:00
16 lines
390 B
HTML
16 lines
390 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>reagent simple example</title>
|
||
|
<link rel="stylesheet" href="example.css">
|
||
|
</head>
|
||
|
<body style="margin-left: -1px; margin-top: -1px">
|
||
|
<div id="app"></div>
|
||
|
<script type="text/javascript" src="target/client.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
core.run();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|