summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/jsx/jsx-runtime/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/jsx/jsx-runtime/index.ts')
-rw-r--r--cli/tests/testdata/jsx/jsx-runtime/index.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/cli/tests/testdata/jsx/jsx-runtime/index.ts b/cli/tests/testdata/jsx/jsx-runtime/index.ts
new file mode 100644
index 000000000..15e2029c8
--- /dev/null
+++ b/cli/tests/testdata/jsx/jsx-runtime/index.ts
@@ -0,0 +1,12 @@
+// deno-lint-ignore-file no-explicit-any
+export function jsx(
+ _type: any,
+ _props: any,
+ _key: any,
+ _source: any,
+ _self: any,
+) {}
+export const jsxs = jsx;
+export const jsxDEV = jsx;
+export const Fragment = Symbol("Fragment");
+console.log("imported", import.meta.url);