vector-im-hydrogen-web/index.html

22 lines
554 B
HTML
Raw Normal View History

2019-02-06 23:04:39 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
2019-02-10 21:25:29 +01:00
<p id="syncstatus"></p>
<div><button id="stopsync">stop syncing</button></div>
2019-02-26 22:45:58 +01:00
<div id="container"></div>
<script type="module">
import main from "./src/main.js";
2019-02-10 21:25:29 +01:00
const label = document.getElementById("syncstatus");
2019-02-26 22:45:58 +01:00
const button = document.getElementById("stopsync");
const container = document.getElementById("container");
//import("./src/main.js").then(main => {
2019-02-26 22:45:58 +01:00
main(label, button, container);
//});
2019-02-10 21:25:29 +01:00
</script>
2019-02-06 23:04:39 +01:00
</body>
2019-02-26 22:45:58 +01:00
</html>