forked from coracle/flotilla
13 lines
282 B
Svelte
13 lines
282 B
Svelte
<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}
|