Now routing scan statins overview

ref #93
This commit is contained in:
2021-03-10 16:41:29 +01:00
parent 7d654f4a20
commit ca9c390bb2
5 changed files with 231 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<script>
import { _ } from "svelte-i18n";
// import AddContactModal from "./AddContactModal.svelte";
import scanstations_empty from "./scanstations_empty.svg";
let modal_open = false;
let current_contacts = [];
</script>
<div class="text-center items-center justify-center">
<p class="mb-16 text-lg text-gray-500">
<img class="w-full h-44" src={scanstations_empty} alt="" />
<span class="font-bold">You don't have any scanstations yet.</span><br />
<span>Add the first scanstation</span>
</p>
</div>
<!-- <AddContactModal bind:modal_open bind:current_contacts /> -->