aboutsummaryrefslogtreecommitdiff
path: root/src/test/fixtures/jsx-comment.tsx
blob: 29f78331d09118b6fa2f747deb779b56c3634989 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const foo = (
  <HelloComponent
    // this is valid JSX!
    wow="hello"
  />
);

const bar = (
  <HelloComponent
    /* this 
    is 
    also 
    valid 
    JSX! 
  */
    wow="hello"
    /* extremely valid JSX!  */
  />
);