Files
flotilla/src/app/components/RelayName.svelte
T
2026-02-10 11:39:29 -08:00

17 lines
282 B
Svelte

<script lang="ts">
import {deriveRelayDisplay} from "@welshman/app"
type Props = {
url: string
class?: string
}
const {url, ...props}: Props = $props()
const display = $derived(deriveRelayDisplay(url))
</script>
<span class={props.class}>
{$display}
</span>