summaryrefslogtreecommitdiff
path: root/tests/specs/publish/unsupported_jsx_tsx/mod.ts
blob: 4631a829d9f6c8c7233cdfc3a4c382e480dca6f7 (plain)
1
2
3
4
5
6
7
import fooTsx from "./foo.tsx";
import fooJsx from "./foo.jsx";

export function renderTsxJsx() {
  console.log(fooTsx());
  console.log(fooJsx());
}