Public vals
3
ije
html
Script
Rendering html with jsx - https://github.com/ije/html using JSX support Atomic CSS powered by UnoCSS dark mode(color scheme) /** @jsx h */
import { h, html } from "https://esm.town/v/ije/html";
export default () => {
return html(
<div class="flex items-center justify-center w-screen h-screen">
<p class="text-5xl font-bold text-green-600">Hello World!</p>
</div>
);
}; Demo: https://www.val.town/v/ije/htmlDemo
0