12 lines
275 B
Svelte
12 lines
275 B
Svelte
<script>
|
|
import Main from "./_Main.svelte";
|
|
|
|
export let name = "Test 2";
|
|
</script>
|
|
|
|
<div class="w-full h-full">
|
|
<h1>Welcome to SvelteKit</h1>
|
|
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
|
|
|
|
<Main name={name} />
|
|
</div> |