Skip to content

Instantly share code, notes, and snippets.

@tararoutray
Created October 18, 2022 02:47
Show Gist options
  • Save tararoutray/ec38cf91b0c208bd8aaff07adc072062 to your computer and use it in GitHub Desktop.
Save tararoutray/ec38cf91b0c208bd8aaff07adc072062 to your computer and use it in GitHub Desktop.
<BrowserRouter basename={'/'}>
<Routes>
<Route path='/auth' element={<Auth />}>
<Route path='login' element={<Login />} />
</Route>
<Route path="/" element={<App />}>
<Route path='' element={
<ProtectedRoute>
<Home />
</ProtectedRoute>
} />
</Route>
</Routes>
</BrowserRouter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment