Created
October 1, 2018 03:18
-
-
Save StevenJL/4fd25012d52846b3bdca93cf6b42aecd 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 = { | |
extraArray: PropTypes.array.isRequired, | |
userNames: PropTyes.arrayOf(PropTypes.string).isRequired, | |
userPosts: PropTypes.arrayOf(PropTypes.shape({ | |
id: PropTypes.number.isRequired, | |
title: PropTypes.string.isRequired, | |
body: PropTypes.string.isRequired, | |
postDate: PropTypes.instanceOf(Date).isRequired | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment