मुझे निम्नलिखित त्रुटि प्राप्त हो रही है
अनक्रीप्ड टाइपरर: अपरिभाषित की संपत्ति 'सेटस्टेट' को नहीं पढ़ सकता है
कंस्ट्रक्टर में डेल्टा बांधने के बाद भी।
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>
);
}
}