From 74cfef48eba802bea372990dbc0477620f1b5214 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 09:37:49 +0000 Subject: [PATCH] feat: Add registration page route to application r --- src/routes.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/routes.ts diff --git a/src/routes.ts b/src/routes.ts new file mode 100644 index 000000000..a2724c92c --- /dev/null +++ b/src/routes.ts @@ -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: , + }, + // Other routes continue here +];