Files
flotilla/src/app/components/ProfileName.svelte
T
2025-02-03 17:21:46 -08:00

10 lines
185 B
Svelte

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