Flesh out people tab

This commit is contained in:
Jon Staab
2024-10-01 14:55:33 -07:00
parent 3e06c36563
commit 65b699d49d
11 changed files with 228 additions and 52 deletions
+12
View File
@@ -0,0 +1,12 @@
<script lang="ts">
import {deriveProfile} from "@welshman/app"
import Content from "@app/components/Content.svelte"
export let pubkey
const profile = deriveProfile(pubkey)
</script>
{#if $profile}
<Content event={{content: $profile.about, tags: []}} hideMedia />
{/if}