Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
704 Bytes
<script lang="ts">
import { createQuery } from '@tanstack/svelte-query'
import { getPostById } from './data'
import type { Post } from './types'
export let postId: number
const post = createQuery<Post>({
queryKey: ['post', postId],
queryFn: () => getPostById(postId),
})
</script>
<div>
<div>
<a class="button" href="/"> Back </a>
</div>
{#if !postId || $post.isPending}
<span>Loading...</span>
{/if}
{#if $post.error}
<span>Error: {$post.error.message}</span>
{/if}
{#if $post.isSuccess}
<h1>{$post.data.title}</h1>
<div>
<p>{$post.data.body}</p>
</div>
<div>{$post.isFetching ? 'Background Updating...' : ' '}</div>
{/if}
</div>