Blog/src/frontend/blog.tsx
Caleb Braaten 16cf44b42d wip: New Application Architecture
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.
2025-10-17 13:53:30 -07:00

9 lines
142 B
TypeScript

import { Html } from "@elysiajs/html";
export function Blog() {
return (
<main>
<h1>Blog</h1>
</main>
)
}