setup: first svelte setup
This commit is contained in:
9
src/routes/+page.svelte
Normal file
9
src/routes/+page.svelte
Normal file
@@ -0,0 +1,9 @@
|
||||
<script>
|
||||
let numbers = 0;
|
||||
for (let i = 1; i < 10; i++) {
|
||||
numbers++;
|
||||
}
|
||||
</script>
|
||||
|
||||
<h1>Welcome to SvelteKit {numbers}</h1>
|
||||
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
|
||||
Reference in New Issue
Block a user