在以下代码的第 4 行,ESLint 给了我一个解析错误说:
意外令牌 =
我想知道为什么会这样?代码运行正常。我究竟做错了什么?
import { Component, PropTypes } from 'react';
export default class MainApp extends Component {
static propTypes = {
children: PropTypes.any.isRequired
}
componentWillMount() {
require('./styles/main.styl');
}
render() {
return (
<div>
{this.props.children}
</div>
);
}
}