1 <script lang="ts" context="module">
6 }) => ({ props: { id } });
10 import { _ } from 'svelte-i18n';
11 import { getTag } from '$lib/stores/tags';
12 import ErrorBlock from '$lib/components/error_block/error_block.svelte';
13 import Loader from '$lib/components/loader/loader.svelte';
14 import Tag from '$lib/components/tag/tag.svelte';
15 export let id: string;
17 $: store = getTag(id);
22 <title>{id}, {$_('tag.title')}</title>
29 <ErrorBlock message={$_('tag.error.unavailable')} />