mirror of
https://github.com/denoland/deno.git
synced 2024-12-13 02:52:54 -05:00
8 lines
232 B
React
8 lines
232 B
React
|
/** @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.jsx</div>);
|
||
|
}
|