Skip to content

Instantly share code, notes, and snippets.

@ywang04
Created June 14, 2020 08:09
Show Gist options
  • Save ywang04/8e6f57c96271969e1a48201f5633b586 to your computer and use it in GitHub Desktop.
Save ywang04/8e6f57c96271969e1a48201f5633b586 to your computer and use it in GitHub Desktop.
How do you validate the PropTypes of a nested object in ReactJS?
//https://stackoverflow.com/questions/26923042/how-do-you-validate-the-proptypes-of-a-nested-object-in-reactjs
import PropTypes from 'prop-types';
propTypes: {
data: PropTypes.shape({
id: PropTypes.number.isRequired,
title: PropTypes.string
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment