Skip to content

Instantly share code, notes, and snippets.

@StevenJL
Last active October 1, 2018 03:11
Show Gist options
  • Save StevenJL/5ee9670886260c2bbceb25b852a5f50a to your computer and use it in GitHub Desktop.
Save StevenJL/5ee9670886260c2bbceb25b852a5f50a to your computer and use it in GitHub Desktop.
import PropTypes from 'prop-types';
Widget.propTypes = {
// Specify that prop is an object
extraData: PropTypes.object.isRequired,
// Specify that prop is an object with certain keys
userData: PropTypes.shape({
name: PropTypes.string,
age: PropTypes.number
}).isRequired
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment