forked from coracle/flotilla
11 lines
387 B
Svelte
11 lines
387 B
Svelte
<script lang="ts">
|
|
import Button from "@lib/components/Button.svelte"
|
|
import InfoKeys from "@app/components/InfoKeys.svelte"
|
|
import {pushModal} from "@app/modal"
|
|
</script>
|
|
|
|
<p class="card2 bg-alt text-sm transition-all">
|
|
A remote signer is a simple way to protect your private key.
|
|
<Button class="link" on:click={() => pushModal(InfoKeys)}>What is a private key?</Button>
|
|
</p>
|