aboutsummaryrefslogtreecommitdiff
path: root/app/src/App.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/App.tsx')
-rw-r--r--app/src/App.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/src/App.tsx b/app/src/App.tsx
index 54a500d..06ead3b 100644
--- a/app/src/App.tsx
+++ b/app/src/App.tsx
@@ -7,6 +7,7 @@ import {
import Login from './components/Login';
import Signup from './components/Signup';
import Dashboard from './components/Dashboard';
+import CreateLink from './components/CreateLink';
function App() {
return (
@@ -16,6 +17,7 @@ function App() {
<Route path="/login" element={<Login />} />
<Route path="/signup" element={<Signup />} />
<Route path="/dashboard" element={<Dashboard />} />
+ <Route path="/create" element={<CreateLink />} />
</Routes>
</Router>
);