Add simple status page

This commit is contained in:
Pieter Vander Vennet 2024-07-14 03:55:47 +02:00
parent bdea29eea1
commit 811bcecea4
6 changed files with 354 additions and 3 deletions

11
src/UI/StatusGui.ts Normal file
View file

@ -0,0 +1,11 @@
import StatusGUI from "./Status/StatusGUI.svelte"
export default class StatusGui {
public setup() {
new StatusGUI({
target: document.getElementById("main"),
})
}
}
new StatusGui().setup()