blob: b34f2952e099789a99c3b9c2832779b8ca1bd879 (
plain)
1
2
3
4
5
6
7
|
/** @jsxRuntime automatic *//** @jsxImportSource npm:preact */
// deno-fmt-ignore-file
import { renderToString } from "npm:preact-render-to-string";
export default function render() {
return renderToString(<div>foo.tsx</div>);
}
|