🏃‍♂️🏃‍♂️🏃‍♂️ basic UI components for team management

ref #14
This commit is contained in:
2021-01-14 19:10:36 +01:00
parent b497cebe76
commit d87b879cc3
5 changed files with 377 additions and 0 deletions

View 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 />