frontend/src/components/Runners.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

13 lines
333 B
Svelte

<script>
import { _ } from "svelte-i18n";
import RunnersEmptyState from "./RunnersEmptyState.svelte";
</script>
<section class="container p-5">
<span class="mb-1 text-3xl font-extrabold leading-tight">
{$_('runners')}
</span>
<p class="mb-8 text-lg text-gray-500">läuft bei ihnen</p>
</section>
<RunnersEmptyState />