Bereaksi router rute yang dibungkus dalam file terpisah

//Allows to make wrapped routes

<Routes>
  <Route path="/welcome/*" element={<Father />} />
</Routes>

//In Father Component
<Routes>
<Route path="user" element={<WelcomePage />}/>
</Routes>
Red Team