11 lines
181 B
Svelte
11 lines
181 B
Svelte
<script lang="ts">
|
|
export let redirect;
|
|
</script>
|
|
|
|
<main>
|
|
<div>
|
|
404 -- Not Found
|
|
</div>
|
|
<button on:click={() => redirect("/")}>Back to home</button>
|
|
</main>
|