diff options
Diffstat (limited to 'tests/testdata/run/jsx_import_source_pragma.tsx')
-rw-r--r-- | tests/testdata/run/jsx_import_source_pragma.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/testdata/run/jsx_import_source_pragma.tsx b/tests/testdata/run/jsx_import_source_pragma.tsx new file mode 100644 index 000000000..c19e53d4f --- /dev/null +++ b/tests/testdata/run/jsx_import_source_pragma.tsx @@ -0,0 +1,9 @@ +/** @jsxImportSource http://localhost:4545/jsx */ + +function A() { + return "hello"; +} + +export function B() { + return <A></A>; +} |