Files
flotilla/src/app/components/Name.svelte
T
2024-10-03 14:32:55 -07:00

12 lines
213 B
Svelte

<script lang="ts">
import {loadProfile, deriveProfileDisplay} from "@welshman/app"
export let pubkey
const profileDisplay = deriveProfileDisplay(pubkey)
loadProfile(pubkey)
</script>
{$profileDisplay}