aboutsummaryrefslogtreecommitdiff
path: root/src/routes.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes.tsx')
-rw-r--r--src/routes.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/routes.tsx b/src/routes.tsx
index 1a3daa1..c85de49 100644
--- a/src/routes.tsx
+++ b/src/routes.tsx
@@ -3,6 +3,7 @@ import { Top } from './Top';
import { SignUp } from './SignUp';
import { SignUpForm1 } from './SignUpForm1';
import { SignUpForm2 } from './SignUpForm2';
+import { SignUpForm3 } from './SignUpForm3';
import { SignUpConfirm } from './SignUpConfirm';
export const routes = createBrowserRouter([
@@ -10,5 +11,6 @@ export const routes = createBrowserRouter([
{ path: '/sign-up', element: <SignUp /> },
{ path: '/sign-up/form1', element: <SignUpForm1 /> },
{ path: '/sign-up/form2', element: <SignUpForm2 /> },
+ { path: '/sign-up/form3', element: <SignUpForm3 /> },
{ path: '/sign-up/confirm', element: <SignUpConfirm /> },
]);