diff options
Diffstat (limited to 'tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/mod.ts')
-rw-r--r-- | tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/mod.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/mod.ts b/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/mod.ts new file mode 100644 index 000000000..05c549f64 --- /dev/null +++ b/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/mod.ts @@ -0,0 +1,7 @@ +import renderJsx from "./foo.jsx"; +import renderTsx from "./foo.tsx"; + +export function render() { + console.log(renderJsx()); + console.log(renderTsx()); +} |