Skip to content

Instantly share code, notes, and snippets.

@alperbayram
Last active June 5, 2022 21:55
Show Gist options
  • Save alperbayram/d76a845f91a179cf74b0cc00f210f480 to your computer and use it in GitHub Desktop.
Save alperbayram/d76a845f91a179cf74b0cc00f210f480 to your computer and use it in GitHub Desktop.
Routers
<Router>
<Navbar />
<Routes>
<Route exact path="/" element={<Home />} />
<Route exact path="/product" element={<Product />} />
<Route exact element={<ProtectedRoutes />}>
<Route exact path="/dashboard" element={<Dashboard />} />
</Route>
<Route exact path="*" element={<Error404 />} />
</Routes>
</Router>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment