prettier/tests/comments/return-statement.js

18 lines
161 B
JavaScript

function a() {
return (
// Comment
<div />
);
}
function b() {
return (
// Comment
!!x
);
}
function c() {
return 1337; // Comment
}