Htm
Create a html response with JSX.
/** @jsx h */
import { serve } from "https://deno.land/std@0.140.0/http/server.ts";
import { h, html, tw } from "https://deno.land/x/htm/mod.tsx";
serve(
(res) => {
return html({
title: "Hello world!",
meta: {
description: "This is a description.",
},
body: <p class={tw("text-green-500")}>Hello world!</p>,
});
},
{ port: 8000 },
);