summaryrefslogtreecommitdiff
path: root/tests/testdata/run/jsx_import_source_no_pragma.tsx
blob: 2c756054fbccf21c2fde8a3305b4b9139c8ce2bf (plain)
1
2
3
4
5
6
7
function A() {
  return "hello";
}

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