src\App.js Line 5:3: 'state' is not defined no-undef

时间:2021-02-23 07:23:04

标签: reactjs

import React, { Component } from 'react';

class App 扩展组件 { 状态 = {

} 使成为() { 返回 (

hlw

); } }

导出默认应用;

1 个答案:

答案 0 :(得分:0)

你必须像这样定义状态:

import React, { Component } from 'react';

class App extends Component {
   constructor(props) {
      super(props);
      this.state = { };
   }
   render() {
      return (
        "hlw"
      );
   }
}

export default App;

我建议您阅读reactsjs Totorial以了解更多信息。