Merge branch 'loading-empty'

This commit is contained in:
Yanick Champoux 2024-02-04 14:55:42 -05:00
commit f8f13da314
2 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"ottawa-boardgame-sell-bgg": minor
---
feat: add empty-state progress loader

View File

@ -28,7 +28,15 @@
>. >.
</p> </p>
{#await data.games then games} {#await data.games}
<div class="medium-height middle-align center-align">
<div class="center-align">
<progress class="circle"></progress>
<h5>gathering games...</h5>
</div>
</div>
{:then games}
<GameList {games} /> <GameList {games} />
{/await} {/await}
</article> </article>