WrappedRoute: fix PageProps type to include children

This commit is contained in:
Alex Gleason 2022-08-12 10:22:30 -05:00
parent e402660bc1
commit 5386135112
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -13,6 +13,7 @@ import BundleContainer from '../containers/bundle_container';
type PageProps = {
params?: MatchType['params'],
layout?: any,
children: React.ReactNode,
};
interface IWrappedRoute extends RouteProps {