Skip to content

Instantly share code, notes, and snippets.

@devknoll
Last active October 30, 2015 07:29
Show Gist options
  • Save devknoll/c214632b41d59cda4271 to your computer and use it in GitHub Desktop.
Save devknoll/c214632b41d59cda4271 to your computer and use it in GitHub Desktop.
import React, { PropTypes } from 'react';
export default Counter = ({ counter = 0 }) => (
<div clicked={{ counter: counter + 1 }}>{counter}</div>
);
Counter.propTypes = {
counter: PropTypes.number
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment