mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 03:05:12 +00:00
18 lines
229 B
Svelte
18 lines
229 B
Svelte
<script>
|
|
import { onMount, onDestroy } from 'svelte';
|
|
|
|
export let status, error = {};
|
|
|
|
let mounted = false;
|
|
|
|
onMount(() => {
|
|
mounted = 'success';
|
|
})
|
|
</script>
|
|
|
|
<h1>{status}</h1>
|
|
|
|
<h2>{mounted}</h2>
|
|
|
|
<p>{error.message}</p>
|