fix(jsx): add missing indent end mark to elements

This commit is contained in:
Pham Huy Hoang 2023-01-04 01:57:40 +09:00 committed by Stephan Seitz
parent 8c71c6c5ed
commit 2cd89b4bc3
6 changed files with 98 additions and 1 deletions

View file

@ -0,0 +1,18 @@
export default function Home() {
return (
<>
<Button
style={{
color: 'blue',
}}
disabled
>
</Button>
<Button
style={{
color: 'blue',
}}
/>
</>
)
}

View file

@ -0,0 +1,10 @@
export default function Home() {
return (
<>
<div>
<p>This is a test</p>
</div>
<Button/>
</>
)
}

View file

@ -0,0 +1,16 @@
export default function Home() {
return (
<>
<Button
style={
}
>
</Button>
<Button
style={{
color: 'blue',
}}
/>
</>
)
}