forked from coracle/flotilla
12 lines
206 B
Svelte
12 lines
206 B
Svelte
<script lang="ts">
|
|
import {deriveRelay} from '@welshman/app'
|
|
|
|
export let url
|
|
|
|
const relay = deriveRelay(url)
|
|
</script>
|
|
|
|
{#if $relay?.profile?.description}
|
|
<p>{$relay?.profile.description}</p>
|
|
{/if}
|