Skip to main content
Module

x/fastro/examples/ctx_jsx.tsx

Full Stack Framework for Deno, TypeScript, Preact JS and Tailwind CSS
Latest
File
import fastro, { Context, HttpRequest } from "$fastro/mod.ts";
const f = new fastro();
f.get( "/", (_req: HttpRequest, ctx: Context) => { return ctx.render(<h1>Hello, jsx!</h1>); },);
await f.serve();