在Reaction路由器V6中渲染多个元素。
我需要这个问题的答案:Render multiple components in React Router但对于较新版本的Reaction-Router-Dom(我使用的是v6.0.2)
旧版本的路由器DOM的工作方式如下:
<Route path="/">
<Header/>
<Home/>
</Route>
而新版本如下所示:
<Route exact path="/" element={<Home/>}/>
我也不确定如何添加页眉
解决方案
尝试将它们包装在片段中
<Route exact path="/" element={<><Header/><Home/></>}/>
相关文章