17 lines
No EOL
388 B
HTML
17 lines
No EOL
388 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<p id="syncstatus"></p>
|
|
<div><button id="stopsync">stop syncing</button></div>
|
|
<script>
|
|
const label = document.getElementById("syncstatus");
|
|
const button = document.getElementById("stopsync");
|
|
import("./src/main.js").then(main => {
|
|
main.default(label, button);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |