Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Jun 11, 2024
1 parent e7156c8 commit ae78727
Showing 1 changed file with 24 additions and 23 deletions.
47 changes: 24 additions & 23 deletions test/end-to-end/src/prerender-cmp/prerender-cmp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,31 @@ import styles from './prerender-cmp.css';
})
export class PrerenderCmp {
render() {
return <>
<div>a</div>,
<div>b</div>,
<div>
<div>c</div>
return (
<>
<div>a</div>,<div>b</div>,
<div>
{[
<div>d</div>,
<div>
{[
<div>e</div>,
<div>f</div>,
<div>g</div>,
<div>h</div>,
<div>i</div>,
<div>j</div>,
<div>k</div>,
<div>l</div>,
]}
</div>,
]}
<div>c</div>
<div>
{[
<div>d</div>,
<div>
{[
<div>e</div>,
<div>f</div>,
<div>g</div>,
<div>h</div>,
<div>i</div>,
<div>j</div>,
<div>k</div>,
<div>l</div>,
]}
</div>,
]}
</div>
</div>
</div>,
<a href="/some-link">Some Link</a>,
</>
,<a href="/some-link">Some Link</a>,
</>
);
}
}

0 comments on commit ae78727

Please sign in to comment.