我使用react-router 5x…,我搜索相同的路径,但有多个组件,比如
<Route path={"/"} component={App & SeachFlow} />
在我的TSX中有
export default (
<Route component={App}>
<Route path="/" component={SeachFlow} />
</Route>
);
如果您希望同时显示两个组件,则可以使用此表示法:
<Route path={"/"}>
<App/>
<SearchFlow/>
</Route>