refactoring and cleanup of Send.Svelte

This commit is contained in:
Samuel Andert
2023-07-20 17:07:03 +02:00
parent db5ae4f998
commit 07a61a4d3a
6 changed files with 113 additions and 59 deletions

View File

@ -1,9 +1,18 @@
<script>
import LitStatus from '$lib/LitStatus.svelte';
import AuthSign from '$lib/AuthSig.svelte';
import Wallet from '$lib/Wallet.svelte';
import Send from '$lib/Send.svelte';
import Balance from '$lib/Balance.svelte';
let pkpWallet;
let authSig;
</script>
<LitStatus />
<AuthSign />
<Send />
<div class="p-4 bg-gray-200 flex justify-center items-center flex-col">
<Wallet bind:pkpWallet bind:authSig />
<Send bind:pkpWallet />
<Balance />
</div>