14
src/components/TeamsEmptyState.svelte
Normal file
14
src/components/TeamsEmptyState.svelte
Normal file
@@ -0,0 +1,14 @@
|
||||
<script>
|
||||
import { _ } from "svelte-i18n";
|
||||
import AddTeamModal from "./AddTeamModal.svelte";
|
||||
let modal_open = false;
|
||||
</script>
|
||||
|
||||
<div class="text-center items-center justify-center">
|
||||
<p class="mb-16 text-lg text-gray-500">
|
||||
<span class="font-bold">There are no teams added yet.</span><br />
|
||||
<span>Add your first team</span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<AddTeamModal bind:modal_open />
|
||||
Reference in New Issue
Block a user