summaryrefslogtreecommitdiff
path: root/cli/tests/047_jsx_test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/047_jsx_test.jsx')
-rw-r--r--cli/tests/047_jsx_test.jsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/tests/047_jsx_test.jsx b/cli/tests/047_jsx_test.jsx
index 61bd7e36c..4c2314072 100644
--- a/cli/tests/047_jsx_test.jsx
+++ b/cli/tests/047_jsx_test.jsx
@@ -3,7 +3,5 @@ const React = {
return { factory, props, children };
},
};
-const View = () => (
- <div class="deno">land</div>
-);
+const View = () => <div class="deno">land</div>;
console.log(<View />);