aboutsummaryrefslogtreecommitdiff
path: root/app/src/App.tsx
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-12-18 19:24:43 -0600
committerParker <contact@pkrm.dev>2024-12-18 19:24:43 -0600
commit1ae686480c084f3af897de138fc2af97f0c262d2 (patch)
treefc931891daef93de651290f4cfe5536a3e40c528 /app/src/App.tsx
parent90b3e8add1f5d1b34c080517aec21d22c138583d (diff)
Remove `/create` - add directly to dashboard page
Diffstat (limited to 'app/src/App.tsx')
-rw-r--r--app/src/App.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/src/App.tsx b/app/src/App.tsx
index 06ead3b..54a500d 100644
--- a/app/src/App.tsx
+++ b/app/src/App.tsx
@@ -7,7 +7,6 @@ import {
import Login from './components/Login';
import Signup from './components/Signup';
import Dashboard from './components/Dashboard';
-import CreateLink from './components/CreateLink';
function App() {
return (
@@ -17,7 +16,6 @@ function App() {
<Route path="/login" element={<Login />} />
<Route path="/signup" element={<Signup />} />
<Route path="/dashboard" element={<Dashboard />} />
- <Route path="/create" element={<CreateLink />} />
</Routes>
</Router>
);