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

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 {