remove test page

This commit is contained in:
cirroskais 2024-05-24 01:09:00 -04:00
parent 5e29e9d083
commit a2971e4e71
No known key found for this signature in database
GPG key ID: 5FC73EBF2678E33D

View file

@ -1,25 +0,0 @@
<script>
import { bytesToHumanReadable } from '$lib';
import Button from '$lib/components/Inputs/Button.svelte';
import ButtonText from '$lib/components/Inputs/ButtonText.svelte';
/** @type {HTMLInputElement} */
let input;
/** @type {FileList} */
let files;
</script>
<Button
click={() => {
input.click();
}}
>
<ButtonText>Select Files</ButtonText>
</Button>
{#if files}
{#each Array.from(files) as file}
<p>{file.name} ({bytesToHumanReadable(file.size)})</p>
{/each}
{/if}