]> git.r.bdr.sh - rbdr/forum/blobdiff - src/routes/t/[id].svelte
Use tailwind in app html
[rbdr/forum] / src / routes / t / [id].svelte
index 9d3ab9e214b97697b3af1e353973d6e4345f1eb7..d60946b31a231081a5b036eebfff2d6f8a8d4e59 100644 (file)
@@ -1,22 +1,22 @@
-<script context="module">
+<script lang="ts" context="module">
        export const load = ({
        export const load = ({
-         page: {
-           params: { id }
-         }
+               page: {
+                       params: { id }
+               }
        }) => ({ props: { id } });
 </script>
 
        }) => ({ props: { id } });
 </script>
 
-<script>
+<script lang="ts">
        import { onDestroy } from 'svelte';
        import { _ } from 'svelte-i18n';
        import { onDestroy } from 'svelte';
        import { _ } from 'svelte-i18n';
-       import { getTopic } from '$/stores/topic';
-       import { disableTopicActions, enableTopicActions } from '$/stores/actions';
+       import { getTopic } from '$lib/stores/topics';
+       import { disableTopicActions, enableTopicActions } from '$lib/stores/actions';
 
 
-       import Topic from '$/components/topic/topic.svelte';
-       import ErrorBlock from '$/components/error_block/error_block.svelte';
-       import Loader from '$/components/loader/loader.svelte';
+       import Topic from '$lib/components/topic/topic.svelte';
+       import ErrorBlock from '$lib/components/error_block/error_block.svelte';
+       import Loader from '$lib/components/loader/loader.svelte';
 
 
-       export let id;
+       export let id: string;
 
        $: store = getTopic(id);
        $: topic = $store.data;
 
        $: store = getTopic(id);
        $: topic = $store.data;