Skip to content

Commit

Permalink
feat: Add registration page route to application r
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Mar 14, 2024
1 parent 86d6865 commit 74cfef4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/routes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { lazy } from 'react';
import { RouteObject } from 'react-router-dom';
import Register from './pages/register.tsx';

const routes: RouteObject[] = [
// Assuming there are other routes defined here
{
path: '/register',
element: <Register />,
},
// Other routes continue here
];

0 comments on commit 74cfef4

Please sign in to comment.