team-1/frontend/src/routes/+page.svelte

13 lines
274 B
Svelte
Raw Normal View History

2025-08-01 18:07:11 +02:00
<script lang="ts">
import { onMount } from "svelte"
let text = $state("...")
onMount(async () => {
let res = await fetch("/api")
text = await res.text()
})
</script>
<h1>Welcome to SvelteKit</h1>
<p class="text-2xl text-red-500">{text}</p>