diff options
| author | ivar <i@oiee.no> | 2026-01-14 21:32:16 +0100 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2026-01-14 21:32:16 +0100 |
| commit | b35302fa020ec82a9d67a6cb34379d42983d3cfc (patch) | |
| tree | 6d9ece54091d96589c9d8b0fa8ec4181c60913e7 /app/src/routes/status.svelte | |
| parent | 5a5717699b8b2d60b7d92c2087ed2cc22667e1cc (diff) | |
| download | sparebank1-actualbudget-b35302fa020ec82a9d67a6cb34379d42983d3cfc.tar.xz sparebank1-actualbudget-b35302fa020ec82a9d67a6cb34379d42983d3cfc.zip | |
Diffstat (limited to 'app/src/routes/status.svelte')
| -rw-r--r-- | app/src/routes/status.svelte | 17 |
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">⟲</div> +</div> + +<style></style> |
