আমি নিম্নলিখিত ত্রুটি পাচ্ছি
আনকচড টাইপ এরির: অপরিজ্ঞাতকৃত সম্পত্তি 'সেটস্টেট' পড়তে পারে না
এমনকি কনস্ট্রাক্টরে বেল্ট বেল্ট পরেও।
class Counter extends React.Component {
constructor(props) {
super(props);
this.state = {
count : 1
};
this.delta.bind(this);
}
delta() {
this.setState({
count : this.state.count++
});
}
render() {
return (
<div>
<h1>{this.state.count}</h1>
<button onClick={this.delta}>+</button>
</div>
);
}
}