Add NotFound route
This commit is contained in:
parent
bdbe79daa9
commit
ba1f48ad0d
1 changed files with 2 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ import { ProtectedRoute } from "./components/ProtectedRoute";
|
|||
import { TabloPage } from "./pages/tablo";
|
||||
import { SessionProvider } from "./contexts/SessionContext";
|
||||
import { OAuthSigninPage } from "./pages/oauth-signin";
|
||||
import { NotFoundPage } from "./pages/NotFoundPage";
|
||||
|
||||
export const App = () => {
|
||||
return (
|
||||
|
|
@ -35,6 +36,7 @@ export const App = () => {
|
|||
<Route path="/login" element={<LoginPage />} />
|
||||
<Route path="/signup" element={<SignUpPage />} />
|
||||
<Route path="/reset-password" element={<ResetPasswordPage />} />
|
||||
<Route path="*" element={<NotFoundPage />} />
|
||||
</Routes>
|
||||
<style>
|
||||
{`
|
||||
|
|
|
|||
Loading…
Reference in a new issue