Ben bir Açısal Geliştiriciyim ve React'te yeniyim, Bu basit tepki Bileşeni ama çalışmıyor
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;
Hata: JSX react / react-in-jsx-kapsamı kullanılırken 'React' kapsam dahilinde olmalıdır