aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/jsx/issue-3986.jsx
blob: 8306e394e326d1c1da5a52c4939f0e75b21b08c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export default function Home() {
  return (
    <>
      <div>
        <p>This is a test</p>
      </div>
      <Button/>
    </>
  )
}