Complete wip: New Application Architecture

Add support for client side routing and updating without loading the AppShell
This commit is contained in:
2025-10-18 16:42:19 -07:00
parent 0890ae3ef9
commit b33ffa3371
5 changed files with 44 additions and 16 deletions

View File

@@ -4,6 +4,7 @@ export function Blog() {
return (
<main>
<h1>Blog</h1>
<a href="/">Home</a>
</main>
)
}

View File

@@ -4,6 +4,7 @@ export function Home() {
return (
<main>
<h1>Home</h1>
<a href="/blog">Blog</a>
</main>
)
}