Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
357 Bytes
<script lang="ts">
import { onDestroy, onMount } from 'svelte'
import { QueryClient } from '@tanstack/query-core'
import { setQueryClientContext } from './context.js'
export let client = new QueryClient()
onMount(() => {
client.mount()
})
setQueryClientContext(client)
onDestroy(() => {
client.unmount()
})
</script>
<slot />