forked from coracle/flotilla
32c1501e9c
Co-authored-by: deveshanim3 <deveshsingh6986@gmail.com> Co-committed-by: deveshanim3 <deveshsingh6986@gmail.com>
17 lines
372 B
Svelte
17 lines
372 B
Svelte
<script lang="ts">
|
|
import {getKey} from "@lib/implicit"
|
|
import KeyDownload from "@app/components/KeyDownload.svelte"
|
|
|
|
type Props = {
|
|
next: () => void
|
|
step?: number
|
|
totalSteps?: number
|
|
}
|
|
|
|
const {next, step, totalSteps}: Props = $props()
|
|
|
|
const secret = getKey<string>("signup.secret")!
|
|
</script>
|
|
|
|
<KeyDownload {secret} {next} {step} {totalSteps} />
|