Remove unused

This commit is contained in:
Filip Krumpe 2022-01-12 16:22:37 +01:00
parent 6eb95435ce
commit 5b26406011

View File

@ -1,12 +1,10 @@
<script> <script>
import Main from "./_Main.svelte"; import Main from "./_Main.svelte";
export let name = "Test 2";
</script> </script>
<div class="w-full h-full"> <main class="w-full h-full">
<h1>Welcome to SvelteKit</h1> <h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p> <p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
<Main name={name} /> <Main/>
</div> </main>