I use react-router 5x..., i search to have the same path but with multiple component, something like
<Route path={"/"} component={App & SeachFlow} />
in my tsx i have
export default (
<Route component={App}>
<Route path="/" component={SeachFlow} />
</Route>
);