1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** @jsxImportSource https://esm.sh/hono@latest/jsx **/
import { Hono } from "https://esm.sh/hono@latest";
const app = new Hono();
app.get("/", (c) =>
c.html(
<html>
{renderHead()}
{renderBody()}
</html>
)
);
export default app;