web-mode
web-mode copied to clipboard
Error in JSX when using self closing div tag
Just got another bug with JSX:
function App() {
return (
<div>
<div/>
</div>
);
}
The outer tags are white and the inner div is not indented.
JSX is not HTML so all tags can be self-closing.