{#if $posts.status === 'pending'}
Loading...
{:else if $posts.status === 'error'}
Error: {$posts.error.message}
{:else}
{#each $posts.data as post}
{post.title}
{/each}
{#if $posts.isFetching}
Background Updating...
{/if} {/if}