Files

13 lines
293 B
Svelte
Raw Permalink Normal View History

2023-10-15 19:14:07 +03:00
<script>
import {getContext} from "svelte";
const channel = getContext("channel")
export let edge;
</script>
<div>
<span class="me-3">Rank: {edge.rank}</span>
<span>id: </span> <a href="{channel.lucentUrl}/records/{edge.target}" target="_blank">{edge.target}</a>
</div>