Skip to main content
Module

x/fastro/examples/ctx_jsx.tsx

The Web Framework for Full Stack Apps
Go to Latest
File
import fastro, { Context, HttpRequest } from "../mod.ts";
const f = new fastro();
f.get( "/", (_req: HttpRequest, ctx: Context) => { return ctx.send(<h1>Hello, jsx!</h1>, 200); },);
await f.serve();