Created
July 28, 2018 09:44
-
-
Save aamnah/c29d5304803a43284236fd2bd18e0312 to your computer and use it in GitHub Desktop.
React Clicker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
class App extends Component { | |
constructor () { | |
super() // allows us to use `this` | |
this.state = { | |
count: 10 | |
} | |
} | |
/* | |
increment = () => {} // preserves `this` from Component state | |
increment () {} // `this` refers to the state of the function and not the React Component | |
*/ | |
increment = () => { | |
/* | |
create a 'pure copy' of the state instead of altering the current state | |
so, no `this.state.count++`, do `this.setState ({ count: this.state.count + 1})` instead | |
*/ | |
this.setState ({ | |
count: this.state.count + 1 | |
}) | |
} | |
render () { | |
return ( | |
<div> | |
<button onClick={this.increment}>Increment</button> | |
{this.state.count} | |
</div> | |
) | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment