diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-08-04 23:17:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-04 23:17:32 -0400 |
commit | 299c7cfe54cb184e0d0c18b00a154c953b433ebf (patch) | |
tree | 2365d59cae5e8f6be54689cf7aee1514ca7e7825 /cli/tests/module_graph | |
parent | fcaf8cd8e37459658a6c06d7e16b3adc9436a135 (diff) |
feat(fmt): format top-level JSX elements/fragments with parens when multi-line (#11582)
Diffstat (limited to 'cli/tests/module_graph')
-rw-r--r-- | cli/tests/module_graph/https_deno.land-x-transpile.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/module_graph/https_deno.land-x-transpile.tsx b/cli/tests/module_graph/https_deno.land-x-transpile.tsx index 23167d2ff..02955bad8 100644 --- a/cli/tests/module_graph/https_deno.land-x-transpile.tsx +++ b/cli/tests/module_graph/https_deno.land-x-transpile.tsx @@ -1,5 +1,5 @@ export default class A { render() { - return (<div>Hello world!</div>); + return <div>Hello world!</div>; } } |