Fix PropTypes warning in WrappedRoute

This commit is contained in:
Alex Gleason 2021-07-09 19:56:09 -05:00
parent c50a7b2126
commit 6df733ba4e
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -18,7 +18,7 @@ class WrappedRoute extends React.Component {
static propTypes = {
component: PropTypes.func.isRequired,
page: PropTypes.object,
page: PropTypes.oneOfType([PropTypes.object, PropTypes.func]),
content: PropTypes.node,
componentParams: PropTypes.object,
layout: PropTypes.object,