aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/jsx/element_attributes.jsx
blob: 45aeeacca4d64575a5c0748976f845b32f8e199b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export default function Home() {
  return (
    <>
      <Button
        style={{ 
          color: 'blue', 
        }}
        disabled
      >
      </Button>
      <Button
        style={{
          color: 'blue',
        }}
      />
    </>
  )
}