Skip to content

Instantly share code, notes, and snippets.

@devknoll
Last active October 30, 2015 07:29
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