summaryrefslogtreecommitdiff
path: root/tests/testdata/run/jsx_import_source_pragma.tsx
blob: c19e53d4ff5e6b6a4430fa9ae85f2c0378762630 (plain)
1
2
3
4
5
6
7
8
9
/** @jsxImportSource http://localhost:4545/jsx */

function A() {
  return "hello";
}

export function B() {
  return <A></A>;
}