Some checks reported errors
continuous-integration/drone/push Build was killed
13 lines
333 B
Svelte
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 />
|