15 lines
381 B
TypeScript
15 lines
381 B
TypeScript
/** @jsx jsx */
|
|
|
|
import { jsx } from "https://deno.land/x/hono@v4.3.10/middleware.ts"
|
|
import { BasePage } from "./components/base.tsx"
|
|
import Main from "./components/main.tsx";
|
|
import Heading from "./components/heading.tsx";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<BasePage name="Home">
|
|
<Heading></Heading>
|
|
<Main>Main</Main>
|
|
</BasePage>
|
|
)
|
|
}
|