1
2
3
4
5
6
7
8
9
10
11
12
/** @jsxImportSource npm:hono@3/jsx */
import { Hono } from "npm:hono";
const app = new Hono();
app.get("/", async (c) => {
return c.html(
<div>
<iframe width="100%" height="400px" src="https://www.val.town/embed/iamseeley/spinner" title="Val Town" frameborder="0" allow="web-share" allowfullscreen></iframe>
</div>
);
});
export default app.fetch;