This repository has no description
1<script lang="ts">
2 interface Props {
3 title: string;
4 // short identifier shown after the title, i.e. the issue record's rkey
5 rkey: string;
6 }
7
8 let { title, rkey }: Props = $props();
9</script>
10
11<header class="pb-2">
12 <h1 class="typography-heading-3 font-normal">
13 {title}
14 <span class="text-foreground-muted">#{rkey}</span>
15 </h1>
16</header>