已经在 Setting->Languages->JavaScript 里面设置 language level 为了 JSX Harmony。
但是在 class 的 constructor 里面写 super 会有红色下划线。。。
class SearchTable extends Component {
constructor(props) {
super(props);
this.state = {
loading: false,
table: {}
};
}
}