web-mode icon indicating copy to clipboard operation
web-mode copied to clipboard

Error in JSX when using self closing div tag

Open jcubic opened this issue 9 months ago • 0 comments

Just got another bug with JSX:

function App() {
    return (
        <div>
        <div/>
        </div>
    );
}

The outer tags are white and the inner div is not indented.

Przechwycenie obrazu ekranu_2024-05-09_19-38-18

JSX is not HTML so all tags can be self-closing.

jcubic avatar May 09 '24 17:05 jcubic