Show all members button on chat

This commit is contained in:
Jon Staab
2024-10-11 16:18:05 -07:00
parent aad1ad5f7c
commit 1be288dcd9
5 changed files with 33 additions and 9 deletions
+11
View File
@@ -0,0 +1,11 @@
<script lang="ts">
import Profile from "@app/components/Profile.svelte"
export let pubkeys
</script>
<div class="row-2">
{#each pubkeys as pubkey (pubkey)}
<Profile {pubkey} />
{/each}
</div>