Dashboard (WIP)

Signed-off-by: Romein van Buren <romein@vburen.nl>
This commit is contained in:
2022-07-08 11:28:44 +02:00
parent 002df5cfb1
commit d691ca7f85
7 changed files with 86 additions and 1 deletions

1
gui/dashboard/app.svelte Normal file
View File

@ -0,0 +1 @@
<h1>here comes the dashboard</h1>

12
gui/dashboard/index.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Status dashboard</title>
</head>
<body>
<div id="outlet"></div>
<script type="module" src="./index.js"></script>
</body>
</html>

7
gui/dashboard/index.js Normal file
View File

@ -0,0 +1,7 @@
import App from './app.svelte';
const app = new App({
target: document.getElementById('outlet'),
});
export default app;