aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/routes/status.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/routes/status.svelte')
-rw-r--r--app/src/routes/status.svelte17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/src/routes/status.svelte b/app/src/routes/status.svelte
new file mode 100644
index 0000000..fe09193
--- /dev/null
+++ b/app/src/routes/status.svelte
@@ -0,0 +1,17 @@
+<script lang="ts">
+ type Props = {
+ type: "sb1" | "actual";
+ };
+ import { onMount } from "svelte";
+ let { type }: Props = $props();
+
+ onMount(() => {});
+</script>
+
+<div>
+ <span>{type}</span>
+ <div class="status"></div>
+ <div class="refresh">&#10226;</div>
+</div>
+
+<style></style>