如何使用react-router为多个组件提供相同的路径



我使用react-router 5x…,我搜索相同的路径,但有多个组件,比如

<Route path={"/"} component={App & SeachFlow} />

在我的TSX中有

export default (
<Route component={App}>
<Route path="/" component={SeachFlow} />
</Route>
);

如果您希望同时显示两个组件,则可以使用此表示法:

<Route path={"/"}>
<App/>
<SearchFlow/>
</Route>

相关内容

  • 没有找到相关文章

最新更新