summaryrefslogtreecommitdiff
path: root/tests/specs/publish/unsupported_jsx_tsx/mod.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/specs/publish/unsupported_jsx_tsx/mod.ts')
-rw-r--r--tests/specs/publish/unsupported_jsx_tsx/mod.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/specs/publish/unsupported_jsx_tsx/mod.ts b/tests/specs/publish/unsupported_jsx_tsx/mod.ts
new file mode 100644
index 000000000..4631a829d
--- /dev/null
+++ b/tests/specs/publish/unsupported_jsx_tsx/mod.ts
@@ -0,0 +1,7 @@
+import fooTsx from "./foo.tsx";
+import fooJsx from "./foo.jsx";
+
+export function renderTsxJsx() {
+ console.log(fooTsx());
+ console.log(fooJsx());
+}