mirror of
https://github.com/Arlind-dev/sulej.ch.git
synced 2025-12-01 01:25:14 +01:00
8 lines
134 B
Svelte
8 lines
134 B
Svelte
<script>
|
|
import { page } from "$app/stores";
|
|
$: status = $page.status;
|
|
</script>
|
|
|
|
<h1>{status}</h1>
|
|
<p>{$page.error?.message}</p>
|