Skip to main content
Module

x/fastro/examples/hello_world_fastro_jsx.tsx

Fast and simple web application framework for deno
Go to Latest
File
import application, { HttpRequest, HttpResponse } from "../server/mod.ts";
const app = application();
app.get( "/", (req: HttpRequest, res: HttpResponse) => res.status(200).jsx(<h1>Hello, jsx</h1>),);
await app.serve();