summaryrefslogtreecommitdiff
path: root/tests/registry/jsr/@denotest/jsx-with-pragmas/1.0.0/foo.jsx
blob: 463fdb01532664e710d16fc6a85b7708fd354c29 (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.jsx</div>);
}