reason
reason copied to clipboard
Comment interleaving wrong before JSX
trafficstars
{
/* foo */
<div className />;
}
refmt as:
<div
className
/* foo */
/>;
the following code:
let t =
<Parent>
// a
React.null
// b
<ElementThatNeedsComment />
// c
</Parent>;
gets refmt'd into:
let t =
<Parent>
React.null
// b
<ElementThatNeedsComment />
</Parent>;
// c
// a