schreiben/src/App.svelte

13 lines
309 B
Svelte
Raw Normal View History

2023-03-05 17:10:29 +00:00
<script lang="ts">
import { setRouteToLastPagePromise, currentRoute } from "./lib/router";
2023-03-05 17:10:29 +00:00
</script>
2023-08-28 13:39:53 +00:00
<main class="min-h-screen max-w-7xl mx-auto">
{#await setRouteToLastPagePromise then}
<svelte:component
this={$currentRoute.component}
{...$currentRoute.params}
/>
{/await}
2023-03-05 17:10:29 +00:00
</main>