Fix PropTypes warning in WrappedRoute

This commit is contained in:
Alex Gleason
2021-07-09 19:56:09 -05:00
parent c50a7b2126
commit 6df733ba4e

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,