1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 18:00:06 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/jsx/element_attributes.jsx

19 lines
251 B
JavaScript
Vendored

export default function Home() {
return (
<>
<Button
style={{
color: 'blue',
}}
disabled
>
</Button>
<Button
style={{
color: 'blue',
}}
/>
</>
)
}