forked from coracle/flotilla
10 lines
177 B
Svelte
10 lines
177 B
Svelte
<script lang="ts">
|
|
import {deriveProfileDisplay} from "@welshman/app"
|
|
|
|
export let pubkey
|
|
|
|
const profileDisplay = deriveProfileDisplay(pubkey)
|
|
</script>
|
|
|
|
{$profileDisplay}
|