ฉันเป็นนักพัฒนาเชิงมุมและเพิ่งเริ่มใช้ React นี่เป็นส่วนประกอบการตอบสนองที่เรียบง่าย แต่ใช้งานไม่ได้
import react , { Component} from 'react';
import { render } from 'react-dom';
class TechView extends Component {
constructor(props){
super(props);
this.state = {
name:'Gopinath'
}
}
render(){
return(
<span>hello Tech View</span>
);
}
}
export default TechView;
ข้อผิดพลาด: 'React' ต้องอยู่ในขอบเขตเมื่อใช้ JSX react / react-in-jsx-scope