Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
346 Bytes
<script lang="ts">
import { createQuery } from '@tanstack/svelte-query'
import { sleep } from '@tanstack/query-test-utils'
const query = createQuery({
queryKey: ['test'],
queryFn: async () => {
await sleep(5)
return 'fetched'
},
})
</script>
<div>{$query.data}</div>
<div>fetchStatus: {$query.fetchStatus}</div>