X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/b86d428a969f761c2270c04d15c7528bb398111a..c458f2733c730cc174500ba308e3a670057d4d84:/src/components/post/post.svelte diff --git a/src/components/post/post.svelte b/src/components/post/post.svelte index 4720533..bf2a190 100644 --- a/src/components/post/post.svelte +++ b/src/components/post/post.svelte @@ -1,27 +1,23 @@ + import { getPost } from '$/stores/post'; + import PostContent from '$/components/post_content/post_content.svelte'; + import ErrorBlock from '$/components/error_block/error_block.svelte'; + import Loader from '$/components/loader/loader.svelte'; - -
-

It's just how it is...

-
-
+ $: store = getPost(id); + $: post = $store.data; + - +{#if $store.loading} + +{/if} +{#if $store.error} + +{/if} +{#if post} + +{/if}