Public
HTTP (deprecated)
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
11
12
13
/** @jsxImportSource https://esm.sh/react */
import { renderToString } from "npm:react-dom/server";
export default async function(req: Request): Promise<Response> {
return new Response(
renderToString(
<div>
<img src="https://64.media.tumblr.com/347d0addf60ae94599cc49ae01681040/252a4ce9dd8f1e3b-a4/s500x750/ea6db36d749669d43c66bd5ee744ddc8553dffb1.jpg" />
</div>,
),
{ headers: { "content-type": "text/html" } },
);
}
maxm-greentiger.web.val.run
May 26, 2024