frontend/src/components/OrgsEmptyState.svelte
Philipp Dormann 66e6cd80d3
Some checks reported errors
continuous-integration/drone/push Build was killed
added new empty states
2021-01-16 20:49:29 +01:00

18 lines
557 B
Svelte

<script>
import { _ } from "svelte-i18n";
import AddOrgModal from "./AddOrgModal.svelte";
import org_empty from "./org_empty.svg";
let modal_open = false;
let current_organizations = [];
</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={org_empty} alt="" />
<span class="font-bold">There are no organizations added yet.</span><br />
<span>Add your first organization</span>
</p>
</div>
<AddOrgModal bind:modal_open bind:current_organizations />