Last active
May 1, 2019 21:35
-
-
Save gpDA/2ffa279605af6ad8f647ec9c7243b197 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// ./components/App.js | |
render(){ | |
return( | |
<Counters counters={this.state.counter} onIncrement={this.handleIncrement} onDecrement={this.handleDecrement} /> | |
<Chart counters={this.state.counters} /> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment