Created
July 18, 2018 07:33
-
-
Save rajatk16/c635c6182b3460c1098dab3c49f1124c 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
| static propTypes = { | |
| userIsLoaded: PropTypes.boolean.isRequired, | |
| user: PropTypes.shape({ | |
| _id: PropTypes.string, | |
| )}.isRequired, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
...
user: PropTypes.shape({
_id: PropTypes.string,
)}.isRequired, // There is a mistake. You should write: })
...