prettier/tests/comments_jsx_same_line/jsx_same_line.js

29 lines
204 B
JavaScript
Raw Normal View History

2018-12-08 13:28:29 +03:00
<div
// comment
>
{foo}
</div>;
<div
// comment
attr="foo"
>
{foo}
</div>;
<div
attr="foo" // comment
>
{foo}
</div>;
<div
attr="foo"
// comment
>
{foo}
</div>;
<br // comment
/>;