Skip to content

Instantly share code, notes, and snippets.

@komkanit
Created June 21, 2017 02:49
Show Gist options
  • Save komkanit/dea70c1d9e04312aa16caa671b4f9c74 to your computer and use it in GitHub Desktop.
Save komkanit/dea70c1d9e04312aa16caa671b4f9c74 to your computer and use it in GitHub Desktop.
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