Skip to content

Instantly share code, notes, and snippets.

@DScheglov
Created November 13, 2017 14:42
Show Gist options
  • Save DScheglov/86787f6eb9ce878651c2bba605d62bca to your computer and use it in GitHub Desktop.
Save DScheglov/86787f6eb9ce878651c2bba605d62bca to your computer and use it in GitHub Desktop.
import { PropTypes } from 'prop-types';
export const SomeComponent = ({ title, onClick }) => (
<button onClick={onClick}>{title}</button>
);
SomeComponent.propTypes = {
title: PropTypes.string,
onClick: PropTypes.func,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment