React学习之路

import React from 'react';
class App extends Component{
  constructor(props){
        super(props);
        this.state={
        }
	}
}

直接继承Component会失败,是因为没有引入{Component}
在这里插入图片描述
这样引入就可以了

import React,{Component} from 'react';

猜你喜欢

转载自blog.csdn.net/qq_35692783/article/details/90106872