Home > Blockchain >  Render multiple elements in React Router v6.
Render multiple elements in React Router v6.

Time:11-15

I need the answer to this question: Render multiple components in React Router but for the newer version of react-router-dom (I'm using v6.0.2)

the older version of router-dom would work like this:

<Route path="/">
 <Header/>
 <Home/>
</Route>

while the new one looks like this:

<Route exact path="/" element={<Home/>}/>

I'm not sure how to add the Header as well

CodePudding user response:

Try wrap them in a fragment

<Route exact path="/" element={<><Header/><Home/></>}/>
  • Related