17
src/components/scanstations/ScanStationsEmptyState.svelte
Normal file
17
src/components/scanstations/ScanStationsEmptyState.svelte
Normal 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 /> -->
|
||||
Reference in New Issue
Block a user