summaryrefslogtreecommitdiff
path: root/tests/testdata/run/047_jsx_test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/run/047_jsx_test.jsx')
-rw-r--r--tests/testdata/run/047_jsx_test.jsx7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/testdata/run/047_jsx_test.jsx b/tests/testdata/run/047_jsx_test.jsx
deleted file mode 100644
index 4c2314072..000000000
--- a/tests/testdata/run/047_jsx_test.jsx
+++ /dev/null
@@ -1,7 +0,0 @@
-const React = {
- createElement(factory, props, ...children) {
- return { factory, props, children };
- },
-};
-const View = () => <div class="deno">land</div>;
-console.log(<View />);