mirror of
https://github.com/smartyellow/status.git
synced 2025-07-20 04:58:03 +00:00
1
gui/dashboard/app.svelte
Normal file
1
gui/dashboard/app.svelte
Normal file
@ -0,0 +1 @@
|
||||
<h1>here comes the dashboard</h1>
|
12
gui/dashboard/index.html
Normal file
12
gui/dashboard/index.html
Normal 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
7
gui/dashboard/index.js
Normal file
@ -0,0 +1,7 @@
|
||||
import App from './app.svelte';
|
||||
|
||||
const app = new App({
|
||||
target: document.getElementById('outlet'),
|
||||
});
|
||||
|
||||
export default app;
|
Reference in New Issue
Block a user