From 71abc48fd4525b9194df848a6915ab4dfc11c354 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sun, 1 Sep 2024 22:36:21 +0900 Subject: 確認画面まで作成する MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/routes.tsx') diff --git a/src/routes.tsx b/src/routes.tsx index cb2b37c..1a3daa1 100644 --- a/src/routes.tsx +++ b/src/routes.tsx @@ -3,10 +3,12 @@ import { Top } from './Top'; import { SignUp } from './SignUp'; import { SignUpForm1 } from './SignUpForm1'; import { SignUpForm2 } from './SignUpForm2'; +import { SignUpConfirm } from './SignUpConfirm'; export const routes = createBrowserRouter([ { path: '/', element: }, { path: '/sign-up', element: }, { path: '/sign-up/form1', element: }, { path: '/sign-up/form2', element: }, + { path: '/sign-up/confirm', element: }, ]); -- cgit v1.2.3