Example of using reactive-query with Svelte

August 7, 2025 ยท View on GitHub

Users

    {#each users.data as user}
  • {user.name}
  • {/each}
{#if users.isLoading}

Loading...

{/if} {#if users.isError}

Error

{/if}