{#if isStoreLoaded}

{#if $store.title}{$store.title}{/if}

{#if $store.description}{$store.description}{/if}

Wallet Address

{#if $store.pkpWallet}

{$store.pkpWallet.address}

{/if}

store: hello (init default)

{#if $store.hello}{$store.hello}{/if}

map: hello2 : "@hello:helloMapMe"

{#if $store.hello2}{$store.hello2}{/if}

map: "todos": "@data:queryTodos"

{#if $store.todos}
{#each $store.todos as todo}
{todo.text}
{/each}
{/if}
{:else}

Loading...

{/if}