diff options
Diffstat (limited to 'tests/testdata/check/jsximportsource_importmap_config/main.bundle.js')
-rw-r--r-- | tests/testdata/check/jsximportsource_importmap_config/main.bundle.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/testdata/check/jsximportsource_importmap_config/main.bundle.js b/tests/testdata/check/jsximportsource_importmap_config/main.bundle.js new file mode 100644 index 000000000..6f39c876e --- /dev/null +++ b/tests/testdata/check/jsximportsource_importmap_config/main.bundle.js @@ -0,0 +1,9 @@ +// deno-fmt-ignore-file +// deno-lint-ignore-file +// This code was bundled using `deno bundle` and it's not recommended to edit it manually + +const makeParagraph = ()=>jsx("p", { + children: "A paragraph!" + }); +export { makeParagraph as makeParagraph }; + |