Files
flotilla/src/app/components/SignUpKey.svelte
T
2026-01-16 11:01:07 -08:00

15 lines
292 B
Svelte

<script lang="ts">
import {getKey} from "@lib/implicit"
import KeyDownload from "@app/components/KeyDownload.svelte"
type Props = {
next: () => void
}
const {next}: Props = $props()
const secret = getKey<string>("signup.secret")!
</script>
<KeyDownload {secret} {next} />