Skip to content

Instantly share code, notes, and snippets.

@bastienapp
Created February 7, 2021 15:26
Show Gist options
  • Select an option

  • Save bastienapp/4c5e0124c277e36f96a959ca45f72b90 to your computer and use it in GitHub Desktop.

Select an option

Save bastienapp/4c5e0124c277e36f96a959ca45f72b90 to your computer and use it in GitHub Desktop.
import PropTypes from 'prop-types';
const childrenPropType = {
children: PropTypes.oneOfType([
PropTypes.arrayOf(PropTypes.node),
PropTypes.node,
]).isRequired,
};
export default childrenPropType;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment