./src/index.js
Line 35: Parsing error: Adjacent JSX elements must be wrapped in an enclosing tag. Did you want a JSX fragment <>...</>?
33 | return (
34 | <h1>{ this.props.title }</h1>
> 35 | <div>React is very interesting</div>
| ^
36 | )
37 | }
38 | }
jsx必须使用一个元素包裹内容,这里与vue的写法类似