Skip to content

Instantly share code, notes, and snippets.

@ravilution
ravilution / App.svelte
Last active May 16, 2024 00:49
Svelte Navaid Nested Code Split Router Example - Open For Improvement
<script>
import Router from "./Router.svelte";
const routes = [];
routes["/parent/*"] = () => import("./Parent.svelte");
</script>
<main>
<h1>App</h1>