forked from coracle/flotilla
15 lines
292 B
Svelte
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} />
|