Explore a new approach to clean up the implementation of an AppShell and individual pages. Will likely retire htmx for a lightweight custom page router.
9 lines
142 B
TypeScript
9 lines
142 B
TypeScript
import { Html } from "@elysiajs/html";
|
|
|
|
export function Blog() {
|
|
return (
|
|
<main>
|
|
<h1>Blog</h1>
|
|
</main>
|
|
)
|
|
} |