mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 18:33:01 +00:00
converted account and organisation pages to dialogs
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
import { BrowserRouter, Route, Routes } from "react-router-dom";
|
||||
import Account from "@/Account";
|
||||
import { Auth } from "@/components/auth-provider";
|
||||
import NotFound from "@/components/NotFound";
|
||||
import { ThemeProvider } from "@/components/theme-provider";
|
||||
import Index from "@/Index";
|
||||
import Organisations from "@/Organisations";
|
||||
import Test from "@/Test";
|
||||
|
||||
function App() {
|
||||
@@ -14,8 +12,6 @@ function App() {
|
||||
<BrowserRouter>
|
||||
<Routes>
|
||||
<Route path="/" element={<Index />} />
|
||||
<Route path="/settings/account" element={<Account />} />
|
||||
<Route path="/settings/organisations" element={<Organisations />} />
|
||||
<Route path="/test" element={<Test />} />
|
||||
<Route path={"*"} element={<NotFound />} />
|
||||
</Routes>
|
||||
|
||||
Reference in New Issue
Block a user