diff options
Diffstat (limited to 'cli/tests/046_jsx_test.tsx')
-rw-r--r-- | cli/tests/046_jsx_test.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/tests/046_jsx_test.tsx b/cli/tests/046_jsx_test.tsx index 857d24d36..a96e90baf 100644 --- a/cli/tests/046_jsx_test.tsx +++ b/cli/tests/046_jsx_test.tsx @@ -8,7 +8,5 @@ const React = { return { factory, props, children }; }, }; -const View = () => ( - <div class="deno">land</div> -); +const View = () => <div class="deno">land</div>; console.log(<View />); |