lan-party-frontend/src/routes/+page.svelte

9 lines
204 B
Svelte
Raw Normal View History

2022-09-01 16:03:36 +02:00
<script lang="ts">
let name: String = "Hello World";
</script>
2022-08-31 08:50:12 +02:00
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
2022-09-01 16:03:36 +02:00
<p>{name}</p>