feat: minimal demo page (#644)

* minimal

* eslint-browser

* dynamic port, reconnect socket, msTo string without Date

* 404 on external not found
This commit is contained in:
Alex Christoffer Rasmussen
2023-12-14 13:27:18 +01:00
committed by GitHub
parent 5a2f711eab
commit 8756b396cc
4 changed files with 100 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>ontime demo</title>
<link href="./styles.css" rel="stylesheet" />
</head>
<body>
<div id="timer"></div>
<script src="./app.js" type="module"></script>
</html>