prettier/tests/comments_jsx_same_line/jsx_same_line.js

29 lines
204 B
JavaScript

<div
// comment
>
{foo}
</div>;
<div
// comment
attr="foo"
>
{foo}
</div>;
<div
attr="foo" // comment
>
{foo}
</div>;
<div
attr="foo"
// comment
>
{foo}
</div>;
<br // comment
/>;