Skip to content

Instantly share code, notes, and snippets.

View surajyadav9's full-sized avatar

Suraj Yadav surajyadav9

View GitHub Profile
@surajyadav9
surajyadav9 / events.js
Created February 16, 2022 03:58
Using Events in React Js
class App extends Component {
constructor(props) {
super(props);
this.state = {count: 0};
}
handleClick(e) {
this.setState({count: this.state.count+1});
}