I’m using react-router-dom V6 and I would like to know if it was possible to add more than one Outlet component at the same time because I want to have one section to be replaceable and a footer
This is what I attempted
<Route path = "/" element={<AppToolBar/>} >
<Route path = "/AboutMe" element={<AboutMe />}>
<Route path="/AboutMe" element={<AboutMeIntro />} />
<Route path="/AboutMe" element={<Footer />} />
</Route>
</Route>
But it doesn’t work since it doesn’t identify a difference between each other so it will simply render twice the first one only instead of render first one and second one. Any ideas ? Maybe I’m ignoring something important
This is how it renders