13 lines
274 B
Svelte
13 lines
274 B
Svelte
|
<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>
|