diff options
Diffstat (limited to 'tests/testdata/run/jsx_precompile/skip.tsx')
-rw-r--r-- | tests/testdata/run/jsx_precompile/skip.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/testdata/run/jsx_precompile/skip.tsx b/tests/testdata/run/jsx_precompile/skip.tsx new file mode 100644 index 000000000..49bc4e2b7 --- /dev/null +++ b/tests/testdata/run/jsx_precompile/skip.tsx @@ -0,0 +1,9 @@ +export function A() { + return ( + <div> + <a href="#">foo</a> + <p>hello</p> + <img src="#" alt="" /> + </div> + ); +} |