Type '{}' is missing the following properties from type 'Readonly<RouteComponentProps<{}, StaticContext, unknown>>': history, location, match code example
Example: Type '{}' is missing the following properties from type 'RouteComponentProps<{}, StaticContext, unknown>': history, location, match
const LandingFrame = (props: RouteComponentProps<{}>) => {
return (
<LandingMain {...props} />
);
}