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

12 lines
245 B
Svelte

<script lang="ts">
import {deriveRelay} from "@welshman/app"
const {...props} = $props()
const relay = deriveRelay(props.url)
</script>
{#if $relay?.profile?.description}
<p class={props.class}>{$relay?.profile.description}</p>
{/if}