Last active
October 1, 2018 03:11
-
-
Save StevenJL/5ee9670886260c2bbceb25b852a5f50a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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