Created
June 21, 2017 02:49
-
-
Save komkanit/dea70c1d9e04312aa16caa671b4f9c74 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
const Component = props => ( | |
<div> | |
Count: {props.count} | |
<button onClick={props.increase}>Increment</button> | |
<button onClick={props.decrease}>Decrement</button> | |
</div> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment