Guest User

Untitled

a guest
Nov 20th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. {
  2. active: true,
  3. foo: {
  4. bar: 'baz'
  5. }
  6. }
  7.  
  8. {
  9. active: false
  10. }
  11.  
  12. MyComponent.propTypes = {
  13. config: PropTypes.oneOf([
  14. {
  15. active: false
  16. },
  17. PropTypes.shape({
  18. active: true,
  19. foo: PropTypes.shape({
  20. bar: PropTypes.string.isRequired
  21. })
  22. }).isRequired
  23. ]).isRequired
  24. };
Add Comment
Please, Sign In to add comment