Skip to content

Instantly share code, notes, and snippets.

@alxlion
Created May 31, 2020 16:48
Show Gist options
  • Save alxlion/4efcc199082edda218e18936d9ac4b9a to your computer and use it in GitHub Desktop.
Save alxlion/4efcc199082edda218e18936d9ac4b9a to your computer and use it in GitHub Desktop.
Class example react 1
class MyComponent extends React.Component {
constructor(props) {
super(props)
this.state = {
counter: 0
}
}
render() {
return(<div/>)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment